Graph availability for the eXPivot/JS version:

The eXPivot divides its area into four sections: one for applying aggregate functions to the pivot's cells, sections for pivot rows and columns that define the table structure, and a table section that can display either tabular data or graphical charts. The custom-view feature allows integration with any custom controls. In this example, eXGraph is used to enhance eXPivot with graphical capabilities. eXGraph visualizes the summarized information as columns, displaying aggregated data from eXPivot rather than raw values, which makes it easier to interpret trends and comparisons graphically. Click here to try or more sample here

The following video demonstrates how eXGraph adds graphical functionality to eXPivot:

The movie demonstrates how to display various types of charts based on the summarized data within the pivot control. The control can divide its area into four sections: one for applying aggregate functions to the pivot's cells, the pivot rows and columns that define the table structure, and the table section that can display either tabular data or graphical charts. The custom-view feature supports any type of custom controls. In this sample, the eXGraph is used to provide graphical features for eXPivot. The feature will be supported in the /COM, /NET, /WPF, and /JS versions as well.

The following video highlights an innovative feature designed to improve link visualization:

The following video demonstrates a new feature that enhances link visualization. It intelligently avoids obstacles such as elements, objects, and bars, ensuring a clear and unobstructed display. Additionally, overlapping links are distinguished by alternating colors and variable widths, improving clarity and making it easier to differentiate them visually. This feature will be available across all configurations (/JS, /COM, /NET, and /WPF) for the following components: eXSurface, eXSwimlane, eXG2antt, and eXG2Host.

The following movie illustrates how to insert, code and use any component using Delphi 12:

The video demonstrates how to insert, code, and utilize the exg2antt control within the RAD Studio 12 IDE. The process is similar for any other Exontrol components. If you are running the RAD Studio 12 IDE on a 64-bit Windows machine, please ensure you install the x64 version of the control. Otherwise, you will need to use the x86 (32-bit) version of the component.

The movie illustrates how the ExGantt/JS can manage and adjust resource usage:

For instance, when a task necessitates the allocation of particular resources, the target control can be configured to display detailed information about how these resources are being utilized. To ensure that the resource data remains consistent across different parts of the system, you can employ the PutRes method to synchronize the source control with the target control. This synchronization mechanism ensures that any modifications made in the source control--such as updates to resource data, allocation adjustments, or changes in status--are automatically reflected in the target control. Conversely, any alterations made in the target control will also be communicated back to the source control, maintaining an up-to-date and accurate representation of resource usage in both controls.

changes and additions for 2025, so far

Apr-03-2025 ExG2antt, 27.0.0.5
*Added: Items.ItemBar(exBarHistLegend), specifies the description to show within the histogram's legend for the bar in the control's histogram. The exBarHistLegend option has effect only if the Bar.HistogramCumulativeOriginalColorBars is exKeepOriginalColor. The exBarHistLegend option supports built-in HTML format including the <%=formula%> tag. The <%=formula%> tag indicates the result of the giving formula. The formula supports value formatting. Inside the formula the %0, %1, ... indicates the value of corresponding property of the bar, such as %0 specifies the exBarName, %1 exBarStart, and so on. The %C0, %C1, ... indicates the cell's values.
*Fixed: The resize-cursor between time-units is not showing while the cursor hovers the chart's header, while Chart.OverviewVisible property includes exOverviewShowDateTimeScale flag, and Chart.AllowInsideZoom property is true
*Fixed: The chart flickers if moving more tasks at once
ExPropertiesList, 23.0.1.1
*Added: The HeaderEnabled property enables or disables the control's header. If the header is disabled, the user can't resize or drag and drop any column. Also, the header is disabled, the control's sort/groupby-bar is disabled as well.
*Added: Prevents resizing the columns by drag and drop within the control's header, while the HeaderAppearance property is 0
*Added: The ExecuteTemplate() method can return the value of a variable. For instance, the eXSurface's PointToPosition method uses variables by reference which is not supported in PowerBuilder. For that you can use a code like ExecuteTemplate("dim x,y;x=-1;y=-1;PointToPosition(x,y);x") that returns the x-position (surface's coordinates) of the current mouse pointer. In the same manner you can use ExecuteTemplate("dim x,y;x=-1;y=-1;PointToPosition(x,y);y") to return the y-position.
Apr-01-2025 ExSuite/JS, 4.3
*NEW: Major improvement to the Export method, enabling selection of items and columns to export
*NEW: Ability to specify various non-working zones for items through expressions (exontrol.gantt)
*NEW: Ability to access parent/root item values in the cell's expression (exontrol.tree, exontrol.gantt, exontrol.pivot)
*NEW: 'unique' predefined aggregate function (counts distinct values) (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: The expression properties support the chr(code) operator, which returns the character for a given ASCII (or ANSI) code, and the asc(char) function, which retrieves the ASCII (or ANSI) code of the first character in a string. Additionally, the eol constant represents the end-of-line sequence ("\r\n" or chr(13) & chr(10)), and the tab constant corresponds to the tab character (chr(9)) (exontrol.common)
*Added: The Expression for ConditionalFormat/ComputedField/FormatColumn supports the "parent" and "root" unary operators, allowing item-functions (like "index", "rindex", "apos", "rapos", "pos", "rpos", "opos", and "ropos") or cell variables (%0, %C0, %CS0,...) to reference the parent or root item instead of the current item. For example, parent(1 index ``) returns the index of the parent item, while parent(%C0) gets the caption of the parent item in the column with index 0. root(%CS1) checks whether the root item is checked or unchecked (returns the root's check-state). For instance, "1 index ``" returns the index of the current item, while "parent(1 index ``)" returns the index of the parent item (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: Includes the Total / Locked-Items fields to Export() method ("all" option) (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: The Import/Data method can load columns or items from another control if the columns or items field of the Source parameter is of type exontrol.Tree.Columns or exontrol.Tree.Items, respectively. For example, oTree2.Data = {columns: oTree1.Columns} or oTree2.Import({columns: oTree1.Columns}) copies the columns (header) from oTree1 to oTree2, while oTree2.Data = {columns: oTree1.Columns, items: oTree1.Items} copies both columns and items (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: The Export({items: "leaf") method exports only the leaf items of the control, excluding parent or grouped items. This ensures that only the lowest-level data entries are included in the export. (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: The "items" field of the exportOpts parameter in the Export method now supports the "only" keyword with the format only[byindex](type1, type2, !type3, ...), enabling filtering of specific item types for export. The item types are listed in parentheses, separated by commas. Supported types include: locked, selected, visible, checked, sortable, selectable, divider, leaf, and expanded. The "checked" type can specify a column index using brackets (e.g., "checked[1]" exports items checked in the column with index 1). You can exclude a type by prefixing it with "!". For example, Export({items: "only(selected)") exports only selected items, Export({items: "only(!leaf, selected)") exports only selected parent items (excluding leaf items), and Export({items: "only[byindex](sortable, selectable, !divider)") exports items that are sortable and selectable, but not dividers. The "byindex" flag, enclosed in square brackets ([]), ensures that items are listed by their original index order rather than their current display order (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: The "columns" field of the exportOpts parameter in the Export method specifies both the columns to export and the type of the cell's data to be used. The available data types include value ("v", default), plain caption ("pc", text excluding ex-HTML format), formatted caption ("c", displayed value after applying the column's format), state ("s", 0 or 1), or any other name that indicates the cell's method to call. The column list follows the format "index,index[(data)],...", where each index represents the column's index, and (data) defines how the column is exported (e.g., v for value, c for caption, pc for plain caption, or s for state). For example, "0(cap),1(cap),2,3" exports captions for the first two columns and values for the remaining columns, while "0(chk)" exports the checkbox state for the first column. If omitted, all visible columns are exported as indicated by the "data" field of the exportOpts parameter (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: Item.NonworkingUnits/GetNonworkingUnits()/SetNonworkingUnits(value) {string}, gets or sets a formula that defines the use of custom non-working units for the item. The expression supports predefined constants, operators and "value" keyword. The value keyword indicates the date-time unit to check, as a Date type. (exontrol.gantt)
*Added: onviewchange event, notifies your application once control's view is changed, such as when data is updated, summarized, sorted, or filtered (exontrol.pivot)
*Added: The Export({items: ..., columns: "all"}) method exports all columns. If the "columns" field is omitted, the Export method exports all visible columns of the control exactly as they are displayed (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Fixed: The Export({items: "chk", columns: ...}) method now correctly returns data instead of an empty array when the columns field is set and checked items exist in the column with index 0 (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Fixed: The control displays no columns when the data is specified as an expression in CSV or XML format and the pivotRows or pivotColumns property is set (exontrol.pivot)
Mar-26-2025 ExEdit, 21.0.0.2
*Added: Enhances the loading speed of EBN files
*Fixed: The Background(exToolTipAppearance) call might be time-consuming
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
ExHTML, 22.0.0.4
*Added: The `format` operator of expression properties supports formatting the date values, using d, dd, ddd, ddd (day of the month as digits, with or without leading zeros, abbreviated day of the week, day of the week as specified by the current locale ), m, mm, mmm, mmmm (month as digits, with or without leading zeros, abbreviated month, month as specified by the current locale), y, yy, yyy, yyyy (year represented only by the last digits, by a full four or five digits, depending on the calendar used) literals. For instance, the "date(value) format `mmm d, yyyy`" gets the value in MMM d, YYYY format using the current locale, such as "Jan 12, 2023"
*Fixed: The <solidline>, <a id;options> tags are lost once the user types characters
*Fixed: No control frame is shown in design-mode under MS Excel's spreadsheet
Mar-24-2025 ExFileView, 18.0.0.2
*NEW: Show the column's drop down filter bar button differently, while the column has a filter applied
*Added: The Background(exHeaderFilterBarActive) property specifies the visual appearance of the drop down filter bar button, while filter is applied to the column
*Fixed: Expand/collapse glyphs are DPI aware
ExCalc, 17.0.0.2
*NEW: The ex-HTML tags, including fgcolor, bgcolor, gra, out, sha, solidline, and dotline, now support 150 named colors, such as <fgcolor red>, as well as RGB format specifications like <fgcolor rgb(255,0,0)>. This enhancement offers more flexibility in defining colors within ex-HTML tags
*Added: The ExecuteTemplate() method can return the value of a variable. For instance, the eXSurface's PointToPosition method uses variables by reference which is not supported in PowerBuilder. For that you can use a code like ExecuteTemplate("dim x,y;x=-1;y=-1;PointToPosition(x,y);x") that returns the x-position (surface's coordinates) of the current mouse pointer. In the same manner you can use ExecuteTemplate("dim x,y;x=-1;y=-1;PointToPosition(x,y);y") to return the y-position.
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Mar-19-2025 ExG2antt, 27.0.0.4
*Added: The Items.EnsureVisibleBar(Item,Key) method ensures that the item-bar fits the chart's visible area. The EnsureVisibleBar method scrolls vertically the items section and horizontally the chart so the item-bar fits the chart visible area.
*Added: The Background(exChartCreateBar) property specifies the visual appearance to show the frame to create newly bars by drag and drop in the chart panel (the exChartCreateBar property supports solid or EBN colors)
*Added: The Background(exCreateBarHeight) property specifies the height of the frame to create newly bars by drag and drop in the chart panel. If the Background(exCreateBarHeight) property is negative the item's height determines the height of the create-bar frame.
ExGauge, 23.0.0.6
*Added: Delphi 12 sample
*Added: Enhances the loading speed of EBN files
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Mar-17-2025 ExG2Host, 21.0.0.4
*NEW: Support for "FileGroupDescriptor" and "FileContents" clipboard format, or ability to accept messages or attachments by drag and drop from the MS Outlook application (or any other applications that use these clipboard format)
*Added: During the OLEDragDrop event the Data.Files.Count property returns the number of messages or attachments being dropped, while Data.Files(index) property returns the fully path-name of the file that contains the message or the attachment. The control automatically extracts the message/attachment's content to a temporarily file, as you would drop a file from Windows Explorer.
*Added: The Items.CellMerge(Item,Column) supports a string value that holds the list of identifiers separated by comma. For instance, Items.CellMerge(Item,0) = "1,2,3", specifies that the cell on column 0, merges with cells of columns 1, 2, 3. The syntax is equivalent with Items.CellMerge(Item,0) = 1; Items.CellMerge(Item,0) = 2; Items.CellMerge(Item,0) = 3;
ExTreeCube, 19.0.0.2
*Added: Enhances the loading speed of EBN files
*Fixed: The Background(exToolTipAppearance) call might be time-consuming
*Fixed: Occasionally, the Column.Position property returns negative or duplicate values when columns are dynamically added or removed
Mar-12-2025 EXMLGrid, 19.0.0.1
*NEW: The ex-HTML tags, including fgcolor, bgcolor, gra, out, sha, solidline, and dotline, now support 150 named colors, such as <fgcolor red>, as well as RGB format specifications like <fgcolor rgb(255,0,0)>. This enhancement offers more flexibility in defining colors within ex-HTML tags
*Added: Minimize unnecessary invalidation calls during drag and drop operations
*Fixed: Sometimes, the Data.Files.Count property returns a wrong number of files, during OLE drag and drop events (/COM version)
ExMiller, 18.0.0.8
*Fixed: The Layout property does not refresh the control, if using uncoded format, such 'HScroll=100'
*Fixed: The Layout property does not work on empty control
*Fixed: The ScrollPos(False) property may not work properly if the ContinueColumnScroll property is False
Mar-10-2025 ExSwimLane, 22.0.0.2
*NEW: Undo/Redo items into control's toolbar
*Added: The ToolBarFormat property supports 103 and 104 identifiers to handle the Undo and Redo operations for the control. Use the ToolBarCaption, ToolBarToolTip properties to change the Undo/Redo's captions and tooltips. The Undo/Redo items are automatically enabled or disabled based on the control's AllowUndoRedo, CanUndo, CanRedo properties. For instance, the Undo/Redo toolbar items are automatically disabled if the AllowUndoRedo property is False.
*Added: Element.EnsureVisible method scrolls the surface to ensure that the current element fits the control's visible area (expands the parent-elements as well)
*Fixed: The element's Caption is empty during the AddElement event
*Fixed: The expropertieslist/com fails if the user is trying to spy the control (x64 version only, AllowSpy property, browses the object by drag and drop)
ExListBar, 20.0.0.2
*Added: Delphi 12 sample
*Fixed: Declares event parameters as [in, out] in the control's Type library to ensure that the class wrapper correctly generates code for parameters passed by reference. For example, in Delphi, the wrapper class now displays the NewValue parameter of the Change event as var NewValue: OleVariant rather than const NewValue: OleVariant.
*Fixed: The ReplaceIcon method fails to load icons using handles in x64 applications.
Mar-05-2025 ExGrid, 18.0.1.6
*NEW: Multiple improvements for expression-like properties such as: ConditionalFormat.Expression, Column.FormatColumn, Items.FormatCell and so on
*Added: a `like` b binary-operator compares the string a against the pattern b. The pattern b may contain wild-characters such as *, ?, # or [] and can have multiple patterns separated by space character. In order to have the space, or any other wild-character inside the pattern, it has to be escaped, or in other words it should be preceded by a \ character. For instance "value like `F*e`" matches all strings that start with F and ends on e, or "value like `a* b*`? indicates any strings that start with a or b character.
*Added: The 0x or 0X sequence proceed the hexa-representation of a number, in properties that support expressions. For instance, "value = 0x100" specifies whether the value is 256 ( 0x100 in hexa-representation ) 
*Added: `hex` a unary-operator converts the giving string from hexa-representation to a numeric value, or converts the giving numeric value to hexa-representation. For instance, hex(`FF`) returns 255, while the hex(255) or hex(0xFF) returns the `FF` string. The hex(hex(`FFFFFFFF`)) always returns `FFFFFFFF` string, as the second hex call converts the giving string to a number, and the first hex call converts the returned number to string representation (hexa-representation). 
*Added: a `bitand`, `bitor`, `bitxor` b binary/bitwise-operator computes the AND/OR/XOR operation on bits of a and b, and returns the unsigned value. For instance, 0x01001000 bitand 0x10111000 returns 0x00001000, 0x01001000 bitor 0x10111000 returns 0x11111000, 0x01110010 bitxor 0x10101010 returns 0x11011000.
*Added: a `bitshift` b, binary/bitwise-operator shifts every bit of a value to the left if b is negative, or to the right if b is positive, for b times, and returns the unsigned value. For instance, 128 bitshift 1 returns 64 ( dividing by 2 ) or 128 bitshift (-1) returns 256 ( multiplying by 2 )
*Added: `bitnot` x unary/bitwise-operator flips every bit of x, and returns the unsigned value. For instance, bitnot(0x00FF0000) returns 0xFF00FFFF.
ExRibbon, 20.0.0.3
*Added: Delphi 12 sample
*Fixed: Declares event parameters as [in, out] in the control's Type library to ensure that the class wrapper correctly generates code for parameters passed by reference. For example, in Delphi, the wrapper class now displays the NewValue parameter of the Change event as var NewValue: OleVariant rather than const NewValue: OleVariant.
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Mar-03-2025 ExSuite/JS, 4.2
*NEW: Ability to show idem caption (allows the display of a specific symbol or text to represent repeated captions, rather than repeating the full caption itself) (exontrol.tree, exontrol.gantt, exontrol.pivot)
*NEW: Ability to summarize the data by leaving the PivotRows property unspecified (For example, if PivotRows is empty and PivotColumns is set to "sum(5)/12", the result will display a single row and a column for each unique value in column 12. The row will show the sum of values from column 5, corresponding to each unique value in column 12) (exontrol.pivot)
*NEW: Ability to rearrange the pivot-bar to support a single aggregate function, organizing it into distinct sections for pivot rows, pivot columns, and an aggregate definition area (exontrol.pivot)
*Added: Column.ShowIdem/Column.GetShowIdem()/Column.SetShowIdem(value) {string}, defines the symbol used to indicate repeated captions, providing a clear visual cue for identical entries (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Added: ShowIdem/GetShowIdem()/SetShowIdem(value) {string}, specifies the symbol used to indicate repeated captions, offering a clear visual cue for identical entries (effective only in exBranchColumns mode) (exontrol.pivot)
*Added: Clicking the X button on the control's filter bar clears all filters applied to the source data, runtime, and any pivot-column filters in the control's pivot bar (exontrol.pivot)
*Added: MultiColorSerie/GetMultiColorSerie()/SetMultiColorSerie(value) {boolean}, determines whether a single data series (single-valid serie) in a chart can use multiple colors for its data points instead of a single uniform color (exontrol.graph)
*Added: AllowStack/GetAllowStack()/SetAllowStack(value) {boolean}, specifies whether the series are stacked based on the non-empty values defined in the serie's Stack property (exontrol.graph)
*Added: SerieType/GetSerieType()/SetSerieType(value) {string}, indicates the representation method for the data in all series where the type property is not specified, determining how these series are visually displayed (exontrol.graph)
*Added: The miscellaneous options columnEmptyPivotRows and rowEmptyPivotRows (Misc property of MiscellaneousOptions type) define the column and row captions when no pivot rows are specified. In the absence of pivot rows, the pivot columns define the aggregate functions applied to the entire data set (without pivot row grouping). By default, columnEmptyPivotRows is an empty string (""), and rowEmptyPivotRows is set to 'Total'. For example, Misc = {columnEmptyPivotRows: "<c>/", rowEmptyPivotRows: "<c>*"} changes and centers the column and row captions when no pivot rows have been specified (exontrol.pivot)
*Added: The exontrol.Pivot.PivotBarVisibleEnum.exPivotBarSingleAggregate(0x20000000) flag, restructures the pivot-bar into three sections: a pivot-rows section docked to the left, a pivot-columns section docked to the top-right, and a top-left corner section for defining the column and aggregate function for the pivot table (exontrol.pivot)
*Fixed: The control no longer automatically adjusts the value-size to fully fit the client area after the user manually resizes the chart (using the "value-resize" action via drag and drop or middle-click and drag) (exontrol.graph)
*Fixed: Hiding one or more stacked series does not update the layout when there are more than three stacked series (exontrol.graph)
*Fixed: Ignores the ex-HTML tags inherited from Categories or Series when displaying the crossover near a serie (Cursor = {visible: true}) (exontrol.graph)
*Fixed: The data used to generate the cell's value is not displayed when the user double-clicks the cell (showDataOnDblClick property) (exontrol.pivot)
*Fixed: The filter applied to the original data is lost when the user switches back to the layout by double-clicking an item while the showDataOnDblClick property is set (exontrol.pivot)
*Fixed: Prevented toggling of the radio button for aggregate functions to avoid displaying 'undefined' when unchecked (exontrol.pivot)
*Fixed: Prevents the formatting context menu from appearing when the control displays the original data (showDataOnDblClick property) (exontrol.pivot)
*Fixed: The pivot bar of the control remains visible even after the exPivotBarVisible flag is removed from the pivotBarVisible property, indicating that the exontrol.Pivot.PivotBarVisibleEnum.exPivotBarVisible flag is being ignored (exontrol.pivot)
*Fixed: Prevent showing the add-new buttons while the control is locked (locked property) (exontrol.pivot)
*Fixed: The Show property of the control displays only some, but not all, nodes of the specified type (exontrol.orgchart)
ExG2antt, 27.0.0.3
*Fixed: Ensures that the cell being edited/focused fits the control's client area when it is used in a higher item (CRD, ScrollBySingleLine, Column.Def(exCellFormatLevel))
*Fixed: The column is not visible anymore, once you ungroup it (remove it from the control's sort/group bar), after the control's layout/arrangement has been restored using the Layout property (SortBarVisible, AllowGroupBy property)
*Fixed: The cell's content is refreshed only if the cursor hovers it (ComputedField, Editor.EditType)
ExPopupMenu, 15.0.0.1
*Added: Delphi 12 sample
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
*Fixed: Clicking (Custom) property generates "Class Not Registered" error (Windows x64, 'Looking for object with CLSID:{7EBDAAE1-8120-11CF-899F-00AA00688B10}')
Feb-26-2025 ExCalendar, 22.0.0.4
*Added: Delphi 12 sample
*Added: exPatternF2Diagonal(13), exPatternB2Diagonal(14) new flags for PatternEnum type, that defines new patterns similar with exPatternFDiagonal(5) and exPatternB2Diagonal(6) flags
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
ExSlider, 21.0.0.6
*NEW: The ex-HTML tags, including fgcolor, bgcolor, gra, out, sha, solidline, and dotline, now support 150 named colors, such as <fgcolor red>, as well as RGB format specifications like <fgcolor rgb(255,0,0)>. This enhancement offers more flexibility in defining colors within ex-HTML tags
*Added: The `format` operator of expression properties supports formatting the date values, using d, dd, ddd, ddd (day of the month as digits, with or without leading zeros, abbreviated day of the week, day of the week as specified by the current locale ), m, mm, mmm, mmmm (month as digits, with or without leading zeros, abbreviated month, month as specified by the current locale), y, yy, yyy, yyyy (year represented only by the last digits, by a full four or five digits, depending on the calendar used) literals. For instance, the "date(value) format `mmm d, yyyy`" gets the value in MMM d, YYYY format using the current locale, such as "Jan 12, 2023"
*Added: The ExecuteTemplate() method can return the value of a variable. For instance, the eXSurface's PointToPosition method uses variables by reference which is not supported in PowerBuilder. For that you can use a code like ExecuteTemplate("dim x,y;x=-1;y=-1;PointToPosition(x,y);x") that returns the x-position (surface's coordinates) of the current mouse pointer. In the same manner you can use ExecuteTemplate("dim x,y;x=-1;y=-1;PointToPosition(x,y);y") to return the y-position.
ExToolBar.CRD, 18.0.0.2
*Added: Delphi 12 sample
*Added: Enhances the loading speed of EBN files
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
ExEMail, 12.0.0.1
*Added: Delphi 12 sample
*Fixed: Declares event parameters as [in, out] in the control's Type library to ensure that the class wrapper correctly generates code for parameters passed by reference. For example, in Delphi, the wrapper class now displays the NewValue parameter of the Change event as var NewValue: OleVariant rather than const NewValue: OleVariant.
*Fixed: The files attached to the email appear to be corrupted, meaning their content cannot be properly accessed or read.
Feb-24-2025 ExRollist, 16.0.0.3
*Added: Enhances the loading speed of EBN files
*Fixed: The Background(exToolTipAppearance) call might be time-consuming
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
ExTab, 19.0.0.5
*Added: Update the samples to support x64 configuration (/COM version)
*Fixed: No control frame is shown in design-mode under MS Excel's spreadsheet
*Fixed: The AttachTemplate method fails if using "handle" keyword on x64 version
Feb-19-2025 ExToolBar, 21.0.0.1
*NEW: Ability to display scroll buttons when necessary
*Added: The exArrangeItemsScroll flag displays the scroll buttons if needed
*Added: The Background(exScrollBackColor) property defines the visual appearance or solid color of the toolbar's menu scroll buttons. Setting the Background(exScrollBackColor) property to -1 prevents the scroll buttons from being displayed, but you can still scroll the toolbar using drag and drop.
ExGraph, 12.0.0.1
*Added: The MultiColorSerie {boolean}, determines whether a single data series (single-valid serie) in a chart can use multiple colors for its data points instead of a single uniform color
*Added: The Icon parameter of the ReplaceIcon method supports loading an icon in various ways. If the ICON is not provided via its handle, it will attempt to load it from a picture using its reference, the full path to the picture file, or the picture's content encoded as BASE64 strings using the eXImages tool.
*Fixed: Declares event parameters as [in, out] in the control's Type library to ensure that the class wrapper correctly generates code for parameters passed by reference. For example, in Delphi, the wrapper class now displays the NewValue parameter of the Change event as var NewValue: OleVariant rather than const NewValue: OleVariant.
Feb-17-2025 ExPivot, 18.0.0.1
*Added: New visual appearance for all internal icons to support high DPI resolution (100%, 125%, 150%, 175%, 200% and 300%)
*Fixed: The internal icons are stretched and look distorted when DPI scaling is not 100%
*Fixed: The Visual Studio 2022 (64-bit IDE) crashes if you try to place the /NET assembly in the form (design mode)
ExFolderView, 18.0.0.3
*Added: The control's tooltip is shown when the cursor hovers it no matter if the window that hosts the control is activated
*Added: The Appearance property supports values Flat, Sunken and Raised
*Fixed: The expropertieslist/com fails if the user is trying to spy the control (x64 version only, AllowSpy property, browses the object by drag and drop)
Feb-12-2025 ExG2antt, 27.0.0.2
*Added: Saves the Chart.InsideZooms collection using control's Layout property (saves the inside-zoom units to layout)
*Fixed: Sometimes, the label or the caption of the base time-unit is too short while using Chart.UnitWidthNonworking property
*Fixed: The chart's header shows the same label when the user resizes the chart using the middle-mouse button, while the Chart.AllowResizeChart property includes the exAllowResizeChartMiddle flag.
ExStatusBar, 18.0.0.1
*NEW: The ex-HTML tags, including fgcolor, bgcolor, gra, out, sha, solidline, and dotline, now support 150 named colors, such as <fgcolor red>, as well as RGB format specifications like <fgcolor rgb(255,0,0)>. This enhancement offers more flexibility in defining colors within ex-HTML tags
*Added: Enhances the loading speed of EBN files
*Fixed: The Background(exToolTipAppearance) call might be time-consuming
Feb-10-2025

The following video demonstrates how eXGraph adds graphical functionality to eXPivot:

The movie demonstrates how to display various types of charts based on the summarized data within the pivot control. The control can divide its area into four sections: one for applying aggregate functions to the pivot's cells, the pivot rows and columns that define the table structure, and the table section that can display either tabular data or graphical charts. The custom-view feature supports any type of custom controls. In this sample, the eXGraph is used to provide graphical features for eXPivot.
ExShellView, 18.0.0.4
*NEW: Ability to change the parameters passed by reference of the control's events for environments that does not support events with parameters by reference, such as uniPaas 1.5 (formerly known as eDeveloper), DBase, and so on (available for /COM only)
*Added: Event event, notifies the application once the control fires an event
*Added: EventParam() property accesses a specified parameter of the current event. This property has effect only during an event, and can be used to change or retrieve a specified parameter of the current event. Use the EventParam(-2) to display entire information about fired event ( such as name, identifier, and properties ). The EventParam(-1) retrieves the number of parameters of fired event.
ExScrollBar, 21.0.0.6
*Added: Enhances the loading speed of EBN files
*Added: The `format` operator of expression properties supports formatting the time values, using h, hh, H, HH (hours with no/leading zero for single-digit hours; 12/24-hour clock), m, mm (minutes with no/leading zero for single-digit minutes), s, ss (seconds with no leading zero for single-digit seconds), t, tt (one character time marker string, such as A or P, or multi-character time marker string, such as AM or PM). For instance, the "date(value) format `hh:mm:ss tt`" returns the time in a 12-hour clock representation with hours, minutes, seconds, and an AM/PM indicator.
*Fixed: The Background(exToolTipAppearance) call might be time-consuming
Feb-05-2025 ExGrid, 18.0.1.5
*Added: Support for multiple-lines for column's caption (including Column.HTMLCaption) when it is vertically displayed ( Column.HeaderVertical property is True, control's HeaderSingleLine property is False )
*Added: Update the column's sort icon, so it won't be shown as distorted on DPI systems.
*Fixed: The column's caption is not displayed if the control's font is "MS Sans Serif" and the Column.HeaderVertical property is True
ExButton, 23.0.0.3
*Added: The Icon parameter of the ReplaceIcon method supports loading an icon in various ways. If the ICON is not provided via its handle, it will attempt to load it from a picture using its reference, the full path to the picture file, or the picture's content encoded as BASE64 strings using the eXImages tool.
*Fixed: The ReplaceIcon method fails to load icons using handles in x64 applications.
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Feb-03-2025 ExSuite/JS, 4.1
*NEW: Enables arranging pivot-rows across multiple columns using exBranchColumns (previously, pivot-rows could only be displayed in a single column using exBranchTree) (exontrol.pivot)
*NEW: Enable the use of drop-down filters in the Columns panel (controlled by the pivotColumnsFloatBarVisible property), allowing the pivot layout to automatically recalculate when the user filters by none, one, or multiple items (exontrol.pivot)
*NEW: Ability to arrange the view to display weekdays vertically across 7 rows, with one row for each weekday (exontrol.schedule)
*Added: exontrol.Schedule.ShowViewCompactEnum.exViewSingleWeek option enables the schedule view to display weekdays vertically across 7 rows, with one row for each weekday (exontrol.schedule)
*Added: exontrol.Schedule.MiscellaneousOptions.minWidth option specifies the minimum-width in pixels for the day's view (exontrol.schedule)
*Added: The DefaultItemHeight attribute of the Items object in the XML file, loaded using the Data or LoadXML method, is ignored if the defaultItemHeight option is specified when creating the control (exontrol.tree, exontrol.pivot, exontrol.gantt)
*Added: ShowBranchRows/GetShowBranchRows()/SetShowBranchRows(value) {exontrol.Pivot.ShowBranchRowsEnum}, specifies how the branch rows display information (exontrol.pivot)
*Added: The exontrol.Pivot.ShowBranchRowsEnum.exBranchColumns(3) mode, arranges the pivotRows values across multiple columns without displaying the +/- buttons. The exBranchColumns flag can be combined with exBranchIncludeAggregate(0x20) to display the results of aggregate functions in the branch rows. Additionally, the exBranchColumns flag can be combined with exBranchRowDivider(0x10) to display information across the entire line in the branch rows (exontrol.pivot)
*Added: The countLockedColumns property specifies whether pivot-row columns are locked to the left side of the control (exontrol.pivot)
*Fixed: Set the default value of the HeaderDayLongLabel property to ensure the header shows the day of the month as a numeric value (exontrol.schedule)
*Fixed: The gantt's histogram is not currently visible (exontrol.common, exontrol.gantt)
*Fixed: Prevent item highlighting when the cursor hovers non-items section such as Columns panel (exontrol.tree, exontrol.gantt, exontrol.pivot)
*Fixed: Hide tree lines when the user double-clicks to show data (via showDataOnDblClick), if the control's linesAtRoot method is defined (exontrol.pivot)
*Fixed: The drop-down menu (displayed when right-clicking the control's item section) for applying content type, conditional formatting, and font attributes does not appear at the cursor position (exontrol.pivot)
*Fixed: Prevent applying the format defined by the content attribute of pivotTotal fields to Total/Subtotal cells (exontrol.pivot)
*Fixed: The column's drop-down format-menu is displayed instead of the Total field, when the user right-clicks a Total or Sub-Total item or cell (exontrol.pivot)
ExSplitBar, 19.0.0.1
*Added: Enhances the loading speed of EBN files
*Fixed: The Background(exToolTipAppearance) call might be time-consuming
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
ExplorerBar, 20.0.0.2
*Added: The Icon parameter of the ReplaceIcon method supports loading an icon in various ways. If the ICON is not provided via its handle, it will attempt to load it from a picture using its reference, the full path to the picture file, or the picture's content encoded as BASE64 strings using the eXImages tool.
*Fixed: The ReplaceIcon method fails to load icons using handles in x64 applications.
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Jan-29-2025 ExSchedule, 23.0.0.4
*Added: UndoRemoveAction([Action], [Count]) method removes the last undo actions that can be performed on the control
*Added: RedoRemoveAction([Action], [Count]) method Removes the first redo actions that can be performed on the control
*Fixed: Ignores the time-part of the Date when using the EnsureVisible(Date) method
ExContextMenu, 18.0.0.2
*Added: Delphi 12 sample
*Fixed: Declares event parameters as [in, out] in the control's Type library to ensure that the class wrapper correctly generates code for parameters passed by reference. For example, in Delphi, the wrapper class now displays the NewValue parameter of the Change event as var NewValue: OleVariant rather than const NewValue: OleVariant.
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Jan-27-2025 ExList, 19.1.0.7
*Added: Prevents showing the thumb of the vertical scroll bar, if the ScrollBySingleLine property is True, and the control displays a single item (higher than the control's height)
*Fixed: Sometimes, the user can't scroll to the last item, if the last scrollable item is partially visible.
*Fixed: Can't move the column to be the last-visible column, while all columns are visible (ColumnAutoResize property on False)
*Fixed: Move slightly the last partially visible column, changes its position.
ExEditors, 14.0.0.1
*NEW: The ex-HTML tags, including fgcolor, bgcolor, gra, out, sha, solidline, and dotline, now support 150 named colors, such as <fgcolor red>, as well as RGB format specifications like <fgcolor rgb(255,0,0)>. This enhancement offers more flexibility in defining colors within ex-HTML tags
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
*Fixed: The ReplaceIcon method fails to load icons using handles in x64 applications.
Jan-21-2025 ExG2antt, 27.0.0.1
*NEW: Ability to specify the size to show the icons/images/check-boxes/radio-buttons within the control
*Added: ImageSize property specifies the size of control' icons/check-boxes/radio-buttons. By default, the ImageSize property is 16. The control's Images collection is cleared if the ImageSize property is changed, so it is recommended to set the ImageSize property before calling the Images method. The ImageSize property specifies the size to show the icons using the Column.HeaderImage, Items.CellImage or Items.CellImages property, the cell's check-box or radio-button using the Column.Def(exCellHasCheckBox), Column.Def(exCellHasRadioButton), Items.CellHasCheckBox, Items.CellHasRadioButton property, the default-size of <img>number[:width]</img> tags within ex-html captions, unless the width is not specified, the size of expand/collapse glyphs, sorting icon (ascending or descending), drop-down or close filter button. The ImageSize property defines the size (width/height) of the icons within the control's Images collection. For instance, if the ICO file to load includes different types the one closest with the size specified by ImageSize property is loaded by Images method. The ImageSize property does NOT change the height for the control's font(Font), sort-bar (SortBarHeight), header (HeaderHeight), item(DefaultItemHeight) or filter-bar(FilterBarHeight)
*Fixed: The Chart.LinkFromPoint(-1, -1) property returns the link under the cursor, even if the point does not directly hover over the lines composing the link, provided the link is either direct (exLinkShowRound property is 1) or straight (exLinkShowRound property is 2)
ExTexture, 6.0.0.2
*Added: TemplateDef/TemplatePut property allows defining inside variables for the Template feature ( available for /COM only, and useful to assign properties with multiple parameters, which is not supported in dBASE )
*Fixed: A GPF may occur on closing the form/window/dialog if one or more events are handled by AttachTemplate method
*Fixed: The AttachTemplate method fails if using "handle" keyword on x64 version
Jan-20-2025 ExTree, 19.1.0.5
*Fixed: The Items.SelectableItem property returns 1 instead of -1 / True value.
*Fixed: The Items.SelectItem property returns 1 instead of -1 / True value.
*Fixed: "The current version, supports ADO and DAO Recordsets. Make sure that the object is an ADO recordset, or a DAO recordset" error may occur if using ADO objects.
*Fixed: Prevents showing the column being dropped to the Columns floating-bar with a different background color ( ColumnsFloatBarVisible, Background(exCursorHoverColumn) )
ExGantt, 19.0.1.0
*Added: Serializes the visibility and position of the columns float bar using the Layout property. The "ColumnsFloatBar" and "ColumnsFloatBarRect" fields of Layout content save/load the visibility/position of the columns float bar. In other words, the Layout property serializes the columns float bar (visibility and position)
*Fixed: FormatAnchor(False) = vbNullString fails (vbNullString is a special VB constant that denotes a null string. The "" literal is an empty string)
*Fixed: The vertical-scroll bar is not shown/hidden once the column gets resized (Def(exCellSingleLine) property)
Jan-15-2025 ExComboBox, 18.0.0.5
*Fixed: Sometimes, the CellButtonClick event is not fired ( for instance, click outside the button's caption)
*Fixed: The Column.Def(exCellButtonAutoWidth) property has no effect for HTML buttons (Column.Def(exCellValueFormat) is exHTML)
*Fixed: Improves the conversion of the string to date, while using Regional settings (Windows System) for date like ddd.dd.mm.yyyy (Su.15.02.2021)
ExCascadeTree, 17.0.0.4
*Fixed: Can't generate portrait orientation for PDF documents using the CopyTo method. For instance, the CopyTo("preview.pdf|210mm x 297mm") generates landscape instead portrait orentation.
*Fixed: The CopyTo() method for PDF documents, converts missing units for paper's size or margins to mm (previously points if no other unit is specified). For instance, CopyTo("preview.pdf|297 x 210mm") generates a PDF document of "8.27 x 4.13 in" instead of "11.69 x 8.27 in" (the mm is missing right after 297)
*Fixed: The control's list is not updated with new items once the Requery method of DataSource (ADO) is called
Jan-13-2025 ExRecord, 17.0.0.3
*Added: EditorOptionEnum.exSliderTickStyle option specifies the style to show the slider's ticks according with the EditorOptionEnum.exSliderTickFrequency option
*Fixed: The edit-field is shifting 2-pixels to the right when selecting a new value from a DropDownType or PickeEditType editor
*Fixed: Aligns the ticks with the slider's thumb indicator, if using the Editor.Option(exSliderTickFrequency) property
ExThumbnail, 19.0.0.8
*Added: Delphi 12 sample
*Added: Enhances the loading speed of EBN files
*Fixed: Prevent returning the event parameter by reference when accessing the EventParam(index) property. For example, PowerBuilder generates a 'Bad runtime function reference' error if an event parameter passed by reference is accessed through the EventParam(index) property
Jan-08-2025 ExHTML, 22.0.0.3
*Added: The CTRL + R removes the current or selection formatting. The keys combination works if the AllowShortcutFormat property is True (similar with CTRL + B for bold, CTRL + I for italic, CTRL + U for underline and CTRL + S for strikeout)
*Fixed: The tolbar's dropdown-menu is not closed when the user presses ESC key while available shortcut-keys are visible. For instance, CTRL + J displays the line's alignment and pressing ESC does not close the drop down. 
*Fixed: The Enter key on a field of Edit type (such as ID or Options of the anchor item) resets field's content instead setting it as it is, on the control's default context-menu
ExPropertiesList, 23.0.1.0
*Added: The <solidline> and <dotline> HTML tags support color in RGB format using the <solidline RRGGBB> or <dotline RRGGBB> syntax, which indicates the color to show the solid or dotted line
*Fixed: The ColumnsAllowSizing property does not work if the HeaderAppearance property is 0
*Fixed: Can't resize the column's width to 0
Jan-06-2025 ExSuite/JS, 4.0
*NEW: Ability to display and arrange the links in a way that prevents overlapping with connected objects (including different colors) (exontrol.surface, exontrol.swimlane, exontrol.gantt)
*Added: exontrol.ShowLinksEnum.exPreventOverlap (0x100) flag adjusts the links to prevent them from overlapping the connected objects. The exPreventOverlap flag has effect only for rectangular links. The exPreventOverlap option calculates the path between A and B using the A* (A-star) pathfinding algorithm, which can be a time-consuming operation. (exontrol.surface, exontrol.swimlane, exontrol.gantt)
*Added: exontrol.ShowLinksEnum.exPreventOverlapMixt (0x80), When used with the exPreventOverlap flag, it ensures that links avoid overlapping with elements or obstacles, enabling their paths to include both rectangular and diagonal lines. When combined with the exChangeColorOnOverlap flag, overlapping links alternately adjust their width in addition to changing colors. The exPreventOverlapMixt flag must always be used alongside either the exPreventOverlap or exChangeColorOnOverlap flag. (exontrol.surface, exontrol.swimlane, exontrol.gantt)
*Added: exontrol.ShowLinksEnum.exChangeColorOnOverlap (0x200) flag changes the color of the links when two or more links overlap (exontrol.surface, exontrol.swimlane, exontrol.gantt)
*Added: The task's progress bar displays its percentage relative to the visible portion of the bar, rather than its full length (e.g., if part of the bar is hidden, the percentage is calculated based on the visible segment) (exontrol.gantt)
*Added: The feE/forEachElement() method invokes the callback for each element of the control (enumerates the elements, as they were added) (exontrol.surface, exontrol.swimlane)
*Added: The feEU/forEachElementUntil() method invokes the callback for each element of the control, until the callback returns a truly value (enumerates the elements, as they were added) (exontrol.surface, exontrol.swimlane)
*Added: The feL/forEachLink() method invokes the callback for each link of the control (enumerates the links, as they were added) (exontrol.surface, exontrol.swimlane)
*Added: The feLU/forEachLinkUntil() method invokes the callback for each link of the control, until the callback returns a truly value (enumerates the links, as they were added) (exontrol.surface, exontrol.swimlane)
*Added: The feP/forEachPool() method invokes the callback for each pool of the control (enumerates the pools, as they were added) (exontrol.swimlane)
*Added: The fePU/forEachPoolUntil() method invokes the callback for each pool of the control, until the callback returns a truly value (enumerates the pools, as they were added) (exontrol.swimlane)
*Added: Refresh method refreshes the control (exontrol.bezier, exontrol.scrollbar)
*Fixed: Occasionally, flags provided as literals were not correctly identified. For example, link.type = "rect" would incorrectly set exontrol.LinkTypeEnum.exDirect(1) instead of exontrol.LinkTypeEnum.exRect(0), and corner = 'C' would resolve to exontrol.HT.BC(0x42) instead of exontrol.HT.C(0x22) (exontrol.common)
*Fixed: Exception has occurred: TypeError: Cannot read properties of undefined (reading 'call', exontrol.Mrg.prototype.<computed> [as onpointercancel], exontrol.common)
*Fixed: Non-movable [nmov] and non-resizable [nres] elements can still be moved or resized if the Shapes property includes a definition for the frameDrag option (where a frame is shown during drag-and-drop instead of moving the element itself (exontrol.surface, exontrol.swimlane)
ExG2antt, 26.0.0.4
*Added: The default value for Column.GroupByFormatCell property is "'<b><caption></b> (' + value + ')'" instead of "'<caption>'"
*Fixed: The critical path may include non critical-bars, if the chart includes SS/FF links (Items.DefSchedulePDM(exPDMCriticalPathBarColor), Items.Link(exLinkStartPos), Items.Link(exLinkEndPos))
*Fixed: The critical path may exclude critical-bars, if the chart includes links with non-zero lags (Items.DefSchedulePDM(exPDMCriticalPathBarColor), Items.Link(exLinkPDMDelay))
ExCalcEdit, 18.0.0.5
*NEW: The ex-HTML tags, including fgcolor, bgcolor, gra, out, sha, solidline, and dotline, now support 150 named colors, such as <fgcolor red>, as well as RGB format specifications like <fgcolor rgb(255,0,0)>. This enhancement offers more flexibility in defining colors within ex-HTML tags
*Added: Delphi 12 sample
*Added: The `format` operator of expression properties supports formatting the time values, using h, hh, H, HH (hours with no/leading zero for single-digit hours; 12/24-hour clock), m, mm (minutes with no/leading zero for single-digit minutes), s, ss (seconds with no leading zero for single-digit seconds), t, tt (one character time marker string, such as A or P, or multi-character time marker string, such as AM or PM). For instance, the "date(value) format `hh:mm:ss tt`" returns the time in a 12-hour clock representation with hours, minutes, seconds, and an AM/PM indicator.