@syncfusion/ej2-circulargauge
Advanced tools
Comparing version 17.4.47 to 17.4.50
@@ -7,2 +7,8 @@ <!-- markdownlint-disable MD004 --> | ||
### CircularGauge | ||
#### Bug Fixes | ||
- Axis labels are rendering properly now in the cross position. | ||
## 17.4.41 (2020-01-07) | ||
@@ -9,0 +15,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 17.4.47 | ||
* version : 17.4.50 | ||
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-circulargauge@*", | ||
"_id": "@syncfusion/ej2-circulargauge@17.4.46", | ||
"_id": "@syncfusion/ej2-circulargauge@17.4.47", | ||
"_inBundle": false, | ||
"_integrity": "sha512-n/iMXdYxdSpUUI4E4XSfZe4xju1TuCHufd7eN0DI9TivTT3PmtvwXCy9GywmaG3IJFSzfsokE9pMN+GdfQ5Mkg==", | ||
"_integrity": "sha512-z/LDjgehAuW5uIMW+uPxMcaAo5ND3woGNjcXGE6R1pMrIkrxf6BvlMKYh7CB773gttwDsOPpHfMCxieAG1/T3g==", | ||
"_location": "/@syncfusion/ej2-circulargauge", | ||
@@ -26,4 +26,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-circulargauge/-/ej2-circulargauge-17.4.46.tgz", | ||
"_shasum": "d3c4bd02c1a27a9820bd14f47ef41218939774ae", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-circulargauge/-/ej2-circulargauge-17.4.47.tgz", | ||
"_shasum": "cda57d1bbac01d34cfbab97c8bf1f805174ef199", | ||
"_spec": "@syncfusion/ej2-circulargauge@*", | ||
@@ -73,4 +73,4 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included", | ||
"typings": "index.d.ts", | ||
"version": "17.4.47", | ||
"version": "17.4.50", | ||
"sideEffects": false | ||
} |
@@ -86,3 +86,3 @@ import { getLocationFromAngle, PathOption, stringToNumber, TextOption, textElement, appendPath, toPixel } from '../utils/helper'; | ||
else if (style.position === 'Cross') { | ||
radius = radius - (axis.maxLabelSize.height / 2) - axis.labelStyle.offset; | ||
radius = radius - (axis.maxLabelSize.height / 4) - axis.labelStyle.offset; | ||
} | ||
@@ -89,0 +89,0 @@ else { |
@@ -169,3 +169,5 @@ import { Property, NotifyPropertyChanges, Component, INotifyPropertyChanged, isBlazor } from '@syncfusion/ej2-base';import { Complex, Browser, isNullOrUndefined, resetBlazorTemplate } from '@syncfusion/ej2-base';import { Event, EmitType, EventHandler, Collection, Internationalization, ModuleDeclaration } from '@syncfusion/ej2-base';import { remove, createElement } from '@syncfusion/ej2-base';import { SvgRenderer } from '@syncfusion/ej2-svg-base';import { ILoadedEventArgs, IAnimationCompleteEventArgs, IVisiblePointer, IThemeStyle, ILegendRenderEventArgs } from './model/interface';import { IAxisLabelRenderEventArgs, IRadiusCalculateEventArgs, IPointerDragEventArgs, IResizeEventArgs } from './model/interface';import { ITooltipRenderEventArgs, IAnnotationRenderEventArgs, IMouseEventArgs, IPrintEventArgs } from './model/interface';import { TextOption, textElement, RectOption, getAngleFromLocation, getValueFromAngle, removeElement } from './utils/helper';import { Size, stringToNumber, measureText, Rect, GaugeLocation, getElement, getPointer, setStyles, toPixel } from './utils/helper';import { getAngleFromValue, getPathArc } from './utils/helper';import { GaugeTheme } from './utils/enum';import { Border, Margin, Font, TooltipSettings } from './model/base';import { BorderModel, MarginModel, FontModel, TooltipSettingsModel } from './model/base-model';import { Axis, Range, Pointer, Annotation, VisibleRangeModel } from './axes/axis';import { Annotations } from './annotations/annotations';import { GaugeTooltip } from './user-interaction/tooltip';import { AxisModel } from './axes/axis-model';import { load, loaded, gaugeMouseMove, gaugeMouseLeave, gaugeMouseDown } from './model/constants';import { gaugeMouseUp, dragEnd, dragMove, dragStart, resized } from './model/constants';import { AxisLayoutPanel } from './axes/axis-panel';import { getThemeStyle } from './model/theme';import { LegendSettingsModel } from './legend/legend-model';import { LegendSettings, Legend } from './legend/legend';import { ExportUtils } from '../circular-gauge/utils/export';import { PdfPageOrientation } from '@syncfusion/ej2-pdf-export';import { ExportType } from '../circular-gauge/utils/enum'; | ||
* Triggers before each legend gets rendered. | ||
* @event * @blazorProperty 'legendRender' | ||
* @event | ||
* @deprecated | ||
* @blazorProperty 'legendRender' | ||
*/ | ||
@@ -172,0 +174,0 @@ legendRender?: EmitType<ILegendRenderEventArgs>; |
@@ -175,3 +175,5 @@ /** | ||
* Triggers before each legend gets rendered. | ||
* @event * @blazorProperty 'legendRender' | ||
* @event | ||
* @deprecated | ||
* @blazorProperty 'legendRender' | ||
*/ | ||
@@ -178,0 +180,0 @@ legendRender: EmitType<ILegendRenderEventArgs>; |
@@ -52,3 +52,5 @@ /** | ||
/** | ||
* Specifies AxisLabelRender event arguments for circular gauge. */ | ||
* Specifies AxisLabelRender event arguments for circular gauge. | ||
* @deprecated | ||
*/ | ||
export interface IAxisLabelRenderEventArgs extends ICircularGaugeEventArgs { | ||
@@ -55,0 +57,0 @@ /** |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
2478318
18735