asposeslidescloud 22.9.0 → 22.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/api.d.ts +113 -741
- package/api.js +1915 -4213
- package/internal/configuration.d.ts +5 -1
- package/internal/configuration.js +1 -0
- package/internal/requestHelper.js +13 -10
- package/model.d.ts +5062 -4917
- package/model.js +3367 -3317
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -97,6 +97,18 @@ You may want to check out Aspose free [Powerpoint to PDF](https://products.aspos
|
|
|
97
97
|
* Added **None** to the list of allowed values for **TimeUnitType** enum type.
|
|
98
98
|
* **Level** property of **Category** class is deprecated and will be removed after v22.4.
|
|
99
99
|
|
|
100
|
+
## Enhancements in Version 22.11
|
|
101
|
+
|
|
102
|
+
* You can now specify data sources for chart elements. This is done with new **DataSource** type which is use with propertries **Chart.DataSourceForCategories**, **Series.DataSourceForName**, **OneValueSeries.DataSourceForValues**, **XYSeries.DataSourceForXValues**, **XYSeries.DataSourceForYValues**, **BubbleSeries.DataSourceForBubbleSizeValues**.
|
|
103
|
+
* You can now specify formulas for data points using new properties **OneValueChartDataPoint.ValueFormula**, **ScatterChartDataPoint.XValueFormula**, **ScatterChartDataPoint.YValueFormula**, **BubbleChartDataPoint.BubbleSizeFormula**.
|
|
104
|
+
* Added boolean **UseFrameSize** and **UseFrameRotation** properties to **SvgExportOptions** class.
|
|
105
|
+
|
|
106
|
+
## Enhancements in Version 22.10
|
|
107
|
+
|
|
108
|
+
* Added new **GetSlideShowProperties** and **SetSlideShowProperties** methods to get & set slideshow properties.
|
|
109
|
+
* Methods that work with shapes, paragraphs and portions now have an optional **subShape** parameter which can be used to access subshapes (SmartArt elements, grouped shapes). Separate methods for subshapes (**GetSubshapeParagraphs**, **CreateSubshape**, **AlignSubshapes** etc.) have been removed.
|
|
110
|
+
* Added boolean **RepeatUntilEndSlide** and **RepeatUntilNextClick** properties to **Effect** class.
|
|
111
|
+
|
|
100
112
|
## Enhancements in Version 22.1
|
|
101
113
|
* New **MathParagraph** property of **Portion** class allows to get and set math formulas. A set of **MathElement** subclasses allows to specify complex mathematical expressions.
|
|
102
114
|
* New **DownloadPortionAsMathMl** and **SavePortionAsMathMl** methods allow to export math formulas to MathML format.
|