header

PC PAL OCX Growth Chart Components

Integrating growth charts components into electronic medical systems
PC PAL

The help documentation for the Growth Chart component contains 4 distinct parts:

For marketing brochure, contact and purchase information, please visit the growthcharts.info website.

Introduction

The PC PAL OCX Growth Chart component needs to be directly integrated into a medical host system by a developer. There is no complete user interface such as in PC PAL GrowthXP application. There is no server, nor any database. All these services are provided by the host application. Patient data is only saved in the host application's database and provided by code to the component.

The chart drawing module is limited to displaying, manipulating, printing and exporting of charts. If the host system is web based, the component can be integrated server-side (generating images or PDF files) or client-side (as an installed and registered component). The client-side integration (e.g. in a desktop application) gives full interactive access to the chart for zooming, hints/flyovers, chart settings etc.

The Growth Chart component is a Windows 32-bit OCX control that can be installed on Windows client or server and used from other applications (desktop or web-based). Generally all Windows editions are supported, namely Windows 32 and 64-bit, Windows 10, 11. If used on a server for image or PDF generation (in web services or web-based solutions), then supported server systems are Windows 32 or 64-bit editions 2012, 2016, 2019 and 2022.

The host software application (desktop client or web page) needs to send to represent medical data on a graph sheet. The graph sheet's attributes allows choosing the graph template to be drawn. The actual drawing is done using the patient's medical data, sent to the component using the patient and visit data objects.

See below an overview schema of the main components:

Allow choosing the graph to be drawn on the current graph sheet.

For each graph template (e.g. USA) the graph type can be chosen
(e.g. Individual).

For each graph the age range can be set (e.g. "Length 0-2 yrs").

Charts
- Allows accessing chart's objects and properties.
Objects
- Allows access to other graph objects.
Tools
- Collection of graph sheet tools (e.g. PreviewToolBar, SettingsDialog).

Medical data

Patient data
- Fields
- Fields definitions

Visit data
- Fields
- Fields definitions

Frequently Asked Questions#

# Question
1. How to install the component?
2. How to check whether the component is correctly installed?
3. Where are the component files installed by default?
4. How to get the installed component version?
5. How to activate debug logs?
6. What to do in case of deployment issues? (e.g. 64-bit, license or rights issues)
7. How to do a side-by-side Windows deployment using manifests?
8. What are the available component control names, classes and interfaces?
9. How to choose the graph template?
10. How to adjust the graph's display quality?
11. How to set legend values?
12. How to setup patient and visit data? (ASP example)
13. How to know which parameters are required by a calculation?
14. How works the conversion from supplied string values to numerical/date values?
15. What interactive features are available when the component is integrated in a desktop application?

Question How to install the PC PAL Growth Charts component? #
Answer PC PAL supplies specific installers for each version. If you didn't receive yours write an e-mail to info@pcpal.eu or use this contact form.

If the default installation doesn't suit the machine or the host application, the component can also be installed "manually". Create a batch file (e.g. install.bat) as in the example below, save it in the same folder as the normal installer and launch it using the following parameters:
  • pass the installer file name as first parameter
  • -u - uninstall
E.g. "install.bat USGrowthCharts.exe -u" (Administrator rights are needed to run the batch file).

The example below will install the specified component files in the subfolder called "extract".

[+] Example
@Echo OFF
SET QUITE=-q

SET OCXName=%1
SET OCXName=%OCXName:~0,-3%ocx

if (%2)==(-u) goto Uninstall

Echo Install AX %OCXName%
%1 /X extract
rem @Echo ON
extract\AxReg extract\GraphObjIntf.tlb %QUITE%
extract\AxReg extract\GraphXIntf.tlb %QUITE%
extract\AxReg extract\%OCXName% %QUITE%
Goto End

:Uninstall
Echo Uninstall AX %OCXName%
rem @Echo ON
extract\AxReg extract\%OCXName% %QUITE% -u
extract\AxReg extract\GraphXIntf.tlb %QUITE% -u
extract\AxReg extract\GraphObjIntf.tlb %QUITE% -u

:End

Question How to check whether the component is correctly installed? #
Answer Please follow the next steps (Administrator rights are needed to do this test):
  • Create a new MMC console (hit Start or Start/Run and type "mmc").
  • Use File/Add/remove snap-in menu option
  • Select "ActiveX Control" from the list of available snap-ins, then click Add.
  • A wizard for selecting the specific component to be added is shown. Click the Next button.
  • Select the component to be used from the list of installed components on the system, then click Next.
  • Select a friendly name for the component, or leave it unchanged, then click Finish.
  • Save the MMC console file for future use (e.g. "GrowthCharts.msc")

Once the snap-in is installed and the console file is saved, click on it on the left side tree.
In the middle part of the MMC console view the default chart is shown, with toolbar and other visual elements. If this works, the component is correctly installed on the machine.

For Windows 64-bit editions:
Please use "mmc -32" to launch the 32-bit MMC console.

Question Where are the component files installed by default? #
Answer By default, the files are installed in the
C:\Windows\system32\GrowthChartOcx folder.

For Windows 64-bit editions, as the component is compiled as 32-bit, the files are copied to
C:\Windows\SysWOW64\GrowthChartOcx.

Question How to get the installed component's version? #
Answer Use the version property of graph component interface. The version string is formed by the major version, the minor version, the release and the build numbers with a dot as separator: e.g. 2.0.0.8.

[+] Example
[VB]
if AGraph.Version < "2.0.0.0" then
  MsgBox "Unsupported graph component version"+AGraph.Version
end if

[Delphi]
if AGraph.Version < '2.0.0.0' then
  ShowMessage('Unsupported graph component version'+AGraph.Version);

Question How to activate debug logs? #
Answer For any other integration problem there is the possibility to save a debug log file. First, copy the delivered map file (e.g. USGrowthCharts.map) in the same folder.
Second, create a file with the same name as the OCX, but with the ini extension (e.g. USGrowthCharts.ini), in the same folder. Add the following content:
[Debug]
LogFile=Debug_USGrowthCharts.log

You can use any log file name (e.g. MyError.log, US.error.log etc.). The component will output any error in the specified log file, in the same folder. The user under which the component runs needs to have write access to the folder. Otherwise, please specify the full path for the LogFile.

Question What to do in case of deployment issues? (e.g. 64-bit, license or rights issues) #
Answer First, make sure you have a valid license file and that the file is copied in the deployment folder. The license files are small files with the "lic" extension (e.g. USGrowthChart.lic).

Other things to check:
  • Give the user under which the host application is running the right to access the user profile and the folder where the component is deployed.
  • Run web applications (e.g. ASP/ASP.NET) under a local or domain account (no special, nor default account). The user account needs to have a valid and accessible user profile on the server machine.
  • Web applications need to run the component from IIS pools with 32-bit applications enabled.
  • Make sure the same identity is used on both the IIS pool and the server application's virtual folder.
  • In case of license storage errors, sometimes the cause is that the user profile is not loaded by the system.
    To fix it (in IIS 7 or later), edit the Application pool, check the Identity and set the flag LoadUserProfile to True in the Advanced Settings.

Question How to do a side-by-side Windows deployment using manifests? #
Answer Add or update your application manifest (e.g. app.exe.manifest) to point to the component's manifest file. See an example below. Make sure to use the correct growth charts component name (e.g. rename GrowthCharts.SXS as NorwegianGrowthCharts.SXS), it must match the manifest file name.

Download the appropriate manifest file for your component and copy the manifests (app.exe.manifest and *GrowthChart.SXS.manifest) in your application folder. Here are the download links for the available manifests:
Note: if you rename the manifest or change its content, you need to refresh the side-by-side Windows cache by changing the version in the App.exe.manifest (under assembly/assemblyIdentity).

[+] Example
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity
              type = "win32"
              name = "App"
              version = "1.0.0.0" />
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
                  type="win32"
                  name="GrowthCharts.SXS"
                  version="1.0.0.0" />
    </dependentAssembly>
  </dependency>
</assembly>

Question What are the available control names, classes and interfaces? #
Answer Here is the list of PC PAL Growth Chart components included in this documentation. They are also listed in the Summary section.

These control names can be used to locate the control on selection lists (e.g. in Visual Studio, MMC snap-ins etc.). The class names can be used to instantiate a new control by code.
The interface names can be used to manipulate a growth charts control by code.

All interfaces inherit IGraphX interface, which can be used to manipulate any specific growth charts control.
The host application should dispose/free the allocated memory after use (e.g. [VB] Graph=Nothing).

Question How to choose the graph template? #
Answer Set the Template property of graph attributes class with the corresponding ID of the template. Most of the components contain a single template (e.g. USA, Swedish etc.).
The following example shows how to choose a template by using its name.

[+] Example
[VB]

Private Function GetTemplateID(AName As String) As Integer
  With AGraphOcx.GraphAttributes.TemplatesList
    For I = 0 To .Count - 1
      If AName = .Names(I) Then
        GetTemplateID = I
        Exit Function
      End If
    Next I
    GetTemplateID = -1
  End With
End Function

Private Sub BtnGetTemplateID_Click()
  With AGraphOcx.GraphAttributes
  .Template = GetTemplateID("Swedish")
  .ApplyAttributes
End With
End Sub

Question How to adjust the graph's display quality? #
Answer To improve the display quality of the graph, especially when displayed in smaller size, an image processing technology has been implemented (available from version 1.4.0.0).
In most cases the display quality doesn't need to be modified, as it has been set to a value that suits most situations.

However, if the default quality settings still need to be adapted, an INI file needs to be created with the same name as the component, with the following section and commands:
- DisplayQuality is used when the component draws directly to the screen.
- ExportQuality is used when the component exports an image.

This adjusts the display quality on screen or when exporting the chart as an image.
The values are expressed in pixels. A higher value consumes more memory and may slow down the image rendering. To inactivate image processing set the value to 0.

[+] Example
[SmoothOptions]
  DisplayQuality=1024
  ExportQuality=1024

Question How to set legend values? #
Answer The legend values have 3 parts: the symbol, the title and the unit. In this version the titles and units can be changed. E.g. by default, for the "FatherHeight" field, the legend shows:
  • F - FatherHeight: 175,0
The field's definition can be changed, so that the legend shows:
  • F - Father's height: 175,0 cm
The title and the other properties can be set in the "FatherHeight" field definition object.
These properties override the default values shown by the legend.

By default no unit is shown. If needed, a unit label can be set in the UnitName property of the field definition.

Question How to setup patient and visit data (example in ASP)? #
Answer The patient and visit data are added into the component data using the PatientData and VisitData properties.

For the PatientData, the gender ("IsMale") and date of birth ("BirthDate") fields are very important, as the reference data is specific to girls or boys and calculations are done based on the chronological age ("CA").
The measurements are added to VisitData property for each date ("DateVisit").

Important changes:
- The visits can only be added in chronological order (birth first, then the first visit, until the most recent visit) .
- Duplicate visit dates are not supported anymore and should not be added to the component VisitData.
- Birth should be added as a first visit, at the same date, in VisitData.

These changes affect the latest Growth Charts components: for US and Norwegian components after version 2, for Swedish and Icelandic components after version 3 and for WHO component version 1 and later.
In case the visits order is not respected (or duplicate visit dates) an exception is raised, with the message "Visits are not ordered by ascending date".

See below an example how to correctly setup the patient and visit data using ASP.
The order of Response.ContentType set and Response.BinaryWrite call in the example below is important, please use the order given here as example.

[+] Example
[ASP]
<%
Set Graph = Server.CreateObject("USGrowthCharts.USAllGraph")
with Graph
  .ClearData

  with .PatientData
  .Field("ID") = "1222-5556"
  .Field("SurName") = "Test1"
  .Field("FirstName") = "Test2"
  .Field("IsMale") = True
  .Field("BirthDate") = #2/25/2015#
  end with

  with .VisitData
    With .New
    .Field("DateVisit") = #2/25/2015#
    .Field("Height") = 50
    End With
  
    With .New
    .Field("DateVisit") = #6/25/2015#
    .Field("Height") = 52
    End With

    With .New
    .Field("DateVisit") = #12/25/2015#
    .Field("Height") = 54
    End With
  End With

  .Changed

  Response.ContentType = "image/jpeg"
  Response.BinaryWrite(.ExportBinaryAs( "JPEG", 420, 594, 0)) '0 = ldsDefault
End With
%>

Question How to know which parameters are required by a calculation? #
Answer The below table shows the parameters requested by each calculation. Each row describes a calculation, with the parameters being listed as columns with vertical titles. On each calculation row the required parameters are marked with an X in the corresponding intersection cells.

A calculations or parameter field can occur once per patient or once per visit. The Legend table below shows the representation for each field type and kind in the matrix table (patient -> grey background, calculation -> blue text).
Calculation parameters matrix
Fig. Calculation parameters matrix.

Question How works the conversion from supplied string values to numerical/date values? #
Answer The character string values supplied by the host application to the PC PAL Growth Charts component are converted as needed to numerical or date values. The conversion is automatic and it uses the local Windows regional settings. If the application is running on a server, using IIS, then the server's regional settings are used.

The local short date format and the decimal separators are used, so extra caution is needed to avoid errors and wrong conversions.

Here is an example for a server using the "mm/dd/yyyy" short date format and the "." decimal separator:
With .PatientData
  .Field("BirthDate") = "2/25/2012"
  .Field("BL") = "45.91"
  .Field("BW") = "3.500"
End With

And another example, for a server using the "dd/mm/yyyy" short date format and the "," decimal separator:
With .VisitData
  With .New
  .Field("DateVisit") = "25/6/2013"
  .Field("Height") = "50,1"
  End With
End With

Question What interactive features are available when the component is integrated in a desktop application? #
Answer Once the growth chart component has the focus, interactive features like zooming, selecting and the chart toolbar are available to the host application users.
  • Zooming using the mouse only
    Zooming a specific area is possible by selecting the area using the mouse (click top-left and drag to bottom-right corner). This can be done multiple times for better refinement. The opposite movement (click bottom-right and drag to top-left direction) goes to previous zoom state.
  • Zooming using the keyboard only
    The user can use the keyboard to zoom-in (Ctrl, +), zoom-out (Ctrl, -) or reset zoom to full page (Ctrl, 0).
  • Zooming using the mouse and the keyboard
    The chart zooming is also available by holding the Ctrl key while rolling the mouse wheel.
    When the mouse is over the curve or the chart reference area, holding the Alt key shows the local X and Y scales and the exact value under the mouse pointer.
    When the chart is zoomed Space + mouse drag moves the visible area.
  • Using the zoom tools
    Wheel-click shows the zoom navigation map.
    Ctrl, wheel-click shows the local magnifier.
footer


header

Summary

- List of included type libraries and implemented interfaces

Constants:
Interfaces:

Constants:

Austrian growth charts component
AustrianGrowthCharts.ocx - version 1.0.0.1 (2018-06-26)
Constants:
Classes:
AustrianGrowthCharts.XAustrianGrowthCharts

Belgian growth charts component
BelgianGrowthCharts.ocx - version 2.1.0.19 (2023-10-26)
Constants:
Classes:
BelgianGrowthCharts.XBelgianGrowthCharts

Canadian growth charts component
CanadianGrowthCharts.ocx - version 1.0.0.8 (2021-09-09)
Constants:
Classes:
CanadianGrowthCharts.XCanadianGrowthCharts

French growth charts component
FrenchGrowthCharts.ocx - version 2.1.0.36 (2023-09-15)
Classes:
FrenchGrowthCharts.XFrenchGrowthCharts

German growth charts component
GermanGrowthCharts.ocx - version 2.1.0.14 (20223-09-15)
Classes:
GermanGrowthCharts.XGermanGrowthCharts

Icelandic growth charts component
IcelandicGrowthCharts.ocx - version 3.0.0.9 (2018-06-26)
Classes:
IcelandicGrowthCharts.XIcelandicGrowthCharts

Norwegian growth charts component
NorwegianGrowthCharts.ocx - version 2.1.0.26 (2021-05-06)
Classes:
NorwegianGrowthCharts.XNorwegianGrowthCharts

Swedish growth charts component
SwedishGrowthCharts.ocx - version 3.2.0.74 (2022-10-20)
Classes:
SwedishGrowthCharts.XSwedishGrowthCharts

UK growth charts component
UKGrowthCharts.ocx - version 2.1.0.4 (2022-11-02)
Classes:
UKGrowthCharts.XUKGrowthCharts

All US Growth charts library component
USGrowthCharts.ocx - version 2.1.0.30 (2023-06-27)
Constants:
Classes:
USGrowthCharts.PercentileConverter, USGrowthCharts.USAllGraph

WHO growth charts component
WHOGrowthCharts.ocx - version 1.0.0.5 (2018-06-25)
Classes:
WHOGrowthCharts.XWHOGrowthCharts

footer


header

GraphX basic interface component

- File GraphXIntf.tlb
Constants:
TXLineDrawStyle
  • ldsDefault = 0 (Long)
  • ldsDotted = 1 (Long)
  • ldsDithered = 2 (Long)


Interface IGraphX (derived from stdole-IDispatch)
- belongs to GraphX basic interface component (GraphXIntf.tlb)



Property Color: (Read-Write)
- belongs to GraphXIntf-IGraphX interface


Property Enabled: (Read-Write)
- belongs to GraphXIntf-IGraphX interface


Property GraphAttributes: ITXGraphAttributes (Read-Only)
- belongs to GraphXIntf-IGraphX interface

Property GraphSheet: ITXGraphSheet (Read-Only)
- belongs to GraphXIntf-IGraphX interface

Property PatientData: ITXPatientData (Read-Only)
- belongs to GraphXIntf-IGraphX interface

Property Transparent: Boolean (Read-Write)
- belongs to GraphXIntf-IGraphX interface


Property Visible: (Read-Write)
- belongs to GraphXIntf-IGraphX interface


Property VisitData: ITXVisitDataList (Read-Only)
- belongs to GraphXIntf-IGraphX interface

Property ZoomState: TXZoomState (Read-Write)
- belongs to GraphXIntf-IGraphX interface


Procedure Changed
- belongs to GraphXIntf-IGraphX interface


Procedure ClearData
- belongs to GraphXIntf-IGraphX interface


Procedure Draw
- belongs to GraphXIntf-IGraphX interface
Parameter(s):
  • Dc : Long
  • Left : Long
  • Top : Long
  • Right : Long
  • Bottom : Long


Procedure ExportAsJPEG
- belongs to GraphXIntf-IGraphX interface
Parameter(s):


Function ExportBinaryAs : Variant
- belongs to GraphXIntf-IGraphX interface
Parameter(s):


Procedure ExportFileAs
- belongs to GraphXIntf-IGraphX interface
Parameter(s):

Procedure Print
- belongs to GraphXIntf-IGraphX interface


Function PrinterSetup : Boolean
- belongs to GraphXIntf-IGraphX interface


Function PrinterSetupEx : Boolean
- belongs to GraphXIntf-IGraphX interface
Parameter(s):
  • PrintSetupInfo : Unknown


Procedure PrintEx
- belongs to GraphXIntf-IGraphX interface
Parameter(s):
  • Dc : Long
  • Left : Long
  • Top : Long
  • Right : Long
  • Bottom : Long


Interface IGraphXEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to GraphX basic interface component (GraphXIntf.tlb)


Procedure OnGraphPointClick (see GraphXIntf-IGraphXEvents-OnGraphPointClick)
- belongs to GraphXIntf-IGraphXEvents interface
Parameter(s):


Procedure OnGraphPointHint (see GraphXIntf-IGraphXEvents-OnGraphPointHint)
- belongs to GraphXIntf-IGraphXEvents interface
Parameter(s):


footer


header

GraphX Utility object interfaces component

- File GraphObjIntf.tlb
Constants:
TXZoomState
  • zsPageWidth = 0 (Long)
  • zsPageHeight = 1 (Long)
  • zsSelection = 2 (Long)

Interface ITXChart (derived from GraphObjIntf-ITXVisualObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)


This interface allows managing a chart object. E.g. a patient visit data field can be passed to ITXChart.YField to be drawn on the chart. It allows also the access to the reference list, the line references and the shadow references. The list of available properties is detailed on the <a href="#GraphObjIntf-ITXChart-Properties">Properties</a> help. Other objects that are not (yet) published can be accessed through the <a href="#GraphObjIntf-ITXChart-Objects">Objects</a> property.

Property MainReference: ITXReference (Read-Write)
- belongs to GraphObjIntf-ITXChart interface


Property Name: String (Read-Only) (see GraphObjIntf-ITXVisualObject-Name)
- belongs to GraphObjIntf-ITXChart interface


Property Objects: ITXObjectList (Read-Only)
- belongs to GraphObjIntf-ITXChart interface


Property Properties: Variant (Read-Write) (see GraphObjIntf-ITXVisualObject-Properties)
- belongs to GraphObjIntf-ITXChart interface
Parameter(s):
  • Index : Variant


Property References: ITXReferenceList (Read-Only)
- belongs to GraphObjIntf-ITXChart interface


Property ShadowReference: ITXReference (Read-Write)
- belongs to GraphObjIntf-ITXChart interface


Property Visible: Boolean (Read-Write) (see GraphObjIntf-ITXVisualObject-Visible)
- belongs to GraphObjIntf-ITXChart interface


Property XField: String (Read-Write)
- belongs to GraphObjIntf-ITXChart interface


Property YField: String (Read-Write)
- belongs to GraphObjIntf-ITXChart interface


Interface ITXChartList (derived from GraphObjIntf-ITXCustomObjectList)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Item, Objects

This class implements a collection that contains the graph sheet's chart list objects (<a href="#GraphObjIntf-ITXChart">ITXChart</a>). The charts can be accessed by their names or indexes (using the Item property).<br/> The Count property can be used to retrieve the number of the charts.


[+] Example
[Delphi]
var
  AChartList: ITXChartList;
  I: Integer;
begin
  AChartList := AGraphOcx.GraphSheet.Charts;
  for I:= 0 to AChartList.Count-1 do
     ShowMessage(AChartList[I].Name);
end;

[VB]
Dim AChartList As ITXChartList, I As Integer
Set AChartList = AGraphOcx.GraphSheet.Charts
For I = 0 to AChartList.Count-1
  MsgBox AChartList(I).Name
End For

Property Item: ITXChart (Read-Only)
- belongs to GraphObjIntf-ITXChartList interface
Parameter(s):
  • Index : Variant


Interface ITXCustomObjectList (derived from stdole-IDispatch)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Objects

ITXCustomObjectList is a base class for all the graph object lists or collections. Count contains the number of elements existing in the Objects 0-based list.<br/> <br/> Normally the descendant Objects list should be used.<br/> For each ITXCustomObjectList descendant, the items can be accessed by: <ul> <li>Name</li> <li>Index</li> </ul> In Visual Basic, the items can be accessed using the "For Each" syntax, see example below.


[+] Example
[VB]
1. Using For

Dim AList As ITXCustomObjectList
Set AList = AGraphOcx.GraphSheet.Charts
For i = 0 To AList.Count - 1
  MsgBox AList.Objects(i).Name
Next i

2. Using For Each

Dim AList As ITXCustomObjectList
Dim AObject As ITXObject
Set AList = AGraphOcx.GraphSheet.Charts
For Each AObject In AList
  MsgBox AObject.Name
Next AObject

Property Count: Long (Read-Only)
- belongs to GraphObjIntf-ITXCustomObjectList interface


Property Objects: Variant (Read-Only)
- belongs to GraphObjIntf-ITXCustomObjectList interface
Parameter(s):
  • Index : Variant


Interface ITXDataFieldDef (derived from stdole-IDispatch)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)


This class implements an item of a <a href="#GraphObjIntf-ITXDataFieldDefList">ITXDataFieldDefList</a> collection.<br/> The Title, UnitName and DisplayFormat properties are used whenever field information is shown on the graph. The DisplayFormat is used to control the way the value of the field is shown. It must be set according to field's type (float, date etc).


[+] Example
[Delphi]
with AGraphOcx.PatientData.FieldDef['FatherHeight'] do
begin
  Title := 'Father''s height';
  UnitName := 'cm';
  DisplayFormat := '0.00';
end;

with AGraphOcx.VisitData.FieldDef['DateVisit'] do
begin
  Title := 'Visit date';
  DisplayFormat := 'yyyy/mm/dd';
end;

[VB]
With AGraphOcx.PatientData.FieldDefs("FatherHeight")
  .Title = "Father's height"
  .UnitName = "cm"
  .DisplayFormat = "0.00"
End With

With AGraphOcx.VisitData.FieldDefs("DateVisit")
  .Title = "Visit date"
  .DisplayFormat = "yyyy/mm/dd"
End With

Property DisplayFactor: Double (Read-Write)
- belongs to GraphObjIntf-ITXDataFieldDef interface


Property DisplayFormat: String (Read-Write)
- belongs to GraphObjIntf-ITXDataFieldDef interface


Property Title: String (Read-Write)
- belongs to GraphObjIntf-ITXDataFieldDef interface


Property UnitName: String (Read-Write)
- belongs to GraphObjIntf-ITXDataFieldDef interface


Interface ITXDataFieldDefList (derived from GraphObjIntf-ITXCustomObjectList)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Item, Objects

This class implements a collection that contains field definitions. It is a descendant of <a href="#GraphObjIntf-ITXCustomObjectList">ITXCustomObjectList</a>. It is used by ITXPatientData and ITXVisitDataList classes. The collection contains <a href="#GraphObjIntf-ITXDataFieldDef">ITXDataFieldDef</a> items.

Property Item: ITXDataFieldDef (Read-Only)
- belongs to GraphObjIntf-ITXDataFieldDefList interface
Parameter(s):
  • Index : Variant


Interface ITXGraphAttributes (derived from GraphObjIntf-ITXObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)



This class allows choosing the graph template to be drawn on the current sheet. <br/> The normal use case is to select a template from TemplatesList, then a GraphType from GraphTypesList and finally an AgeRange from AgeRangesList.<br/><br/> Tables with all available Template, GraphType and AgeRange for each specific component are available at the end of this documentation:<br/> <ul> <li><a href="#AustrianGrowthCharts-IAustrianGrowthChartsGraph">AT (Austrian)</a></li> <li><a href="#BelgianGrowthCharts-IBelgianGrowthChartsGraph">BE (Belgian)</a></li> <li><a href="#CanadianGrowthCharts-ICanadianGrowthChartsGraph">CA (Canadian)</a></li> <li><a href="#FrenchGrowthCharts-IFrenchGrowthChartsGraph">FR (French)</a></li> <li><a href="#GermanGrowthCharts-IGermanGrowthChartsGraph">DE (German)</a></li> <li><a href="#IcelandicGrowthCharts-IIcelandicGrowthChartsGraph">IS (Icelandic)</a></li> <li><a href="#NorwegianGrowthCharts-INorwegianGrowthChartsGraph">NO (Norwegian)</a></li> <li><a href="#SwedishGrowthCharts-ISwedishGrowthChartsGraph">SE (Swedish)</a></li> <li><a href="#UKGrowthCharts-IUKGrowthChartsGraph">UK</a></li> <li><a href="#WHOGrowthCharts-IWHOGrowthChartsGraph">WHO</a></li> <li><a href="#USGrowthCharts-IUSAllGraph">USA</a></li> </ul> <br/> Call ApplyAttributes so that the current sheet uses the new attributes.


[+] Example
[VB]
'US specific example
Set Graph = Server.CreateObject("USGrowthCharts.USAllGraph")
'Show the US Individual "BMI 2-20 yrs" chart
With Graph.GraphAttributes
    .template = 0    '0 - USA
    .graphtype = 0   '0 - Individual
    .agerange = 2    '5 - BMI 2-20 yrs
    .ApplyAttributes
End With

[VB]
'WHO specific example
Set Graph = Server.CreateObject("WHOGrowthCharts.XWHOGrowthCharts")
'Show the WHO "BMI 2-5 years" chart
With Graph.GraphAttributes
    .template = 0    '0 - WHO
    .graphtype = 1   '1 - 2-5 years
    .agerange = 2    '2 - BMI 2-5 yrs
    .ApplyAttributes
End With

Property AgeRange: Long (Read-Write)
- belongs to GraphObjIntf-ITXGraphAttributes interface


Property AgeRangesList: ITXTemplateItemList (Read-Only)
- belongs to GraphObjIntf-ITXGraphAttributes interface


Property GraphType: Long (Read-Write)
- belongs to GraphObjIntf-ITXGraphAttributes interface


Property GraphTypesList: ITXTemplateItemList (Read-Only)
- belongs to GraphObjIntf-ITXGraphAttributes interface


Property Template: Long (Read-Write)
- belongs to GraphObjIntf-ITXGraphAttributes interface


Property TemplatesList: ITXTemplateItemList (Read-Only)
- belongs to GraphObjIntf-ITXGraphAttributes interface


Procedure ApplyAttributes
- belongs to GraphObjIntf-ITXGraphAttributes interface


Interface ITXGraphSheet (derived from GraphObjIntf-ITXObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)


<div style="float: right"> <img src="images/GrowthCharts_GraphSheetCharts.png" title="Graph Sheet and Charts" style="width: 300px"/><br/> <span style="color: #909090">Fig. Graph Sheet and Charts</span> </div> This class represents the active graph sheet. The active graph sheet is a page configured with components such as patient header, reference information and versioning footer and one or more charts.<br/><br/> The Properties, Charts, Objects and Tools collection properties can be used to customize the sheet's look or its behavior.<br/> <br/> The Properties and Tools give access to customizations, options and actions usually available via toolbars, menus and mouse actions when the component is integrated in an interactive client (desktop application).<br/><br/> The list of available properties is detailed on the <a href="#GraphObjIntf-ITXGraphSheet-Properties" title="Properties">Properties</a> help.<br/> The Tools, such as the PreviewToolBar and the SettingsDialog, are detailed <a href="#GraphObjIntf-ITXToolList" title="ITXToolList">here</a>.<br/>

Property Charts: ITXChartList (Read-Only)
- belongs to GraphObjIntf-ITXGraphSheet interface


Property Objects: ITXObjectList (Read-Only)
- belongs to GraphObjIntf-ITXGraphSheet interface


Property Properties: Variant (Read-Write) (see GraphObjIntf-ITXObject-Properties)
- belongs to GraphObjIntf-ITXGraphSheet interface
Parameter(s):
  • Index : Variant


Property Tools: ITXToolList (Read-Only)
- belongs to GraphObjIntf-ITXGraphSheet interface


Interface ITXObject (derived from stdole-IDispatch)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Name, Properties

It is the main ancestor of almost all graph classes. Use Properties property to access all objects' properties.

Property Name: String (Read-Only)
- belongs to GraphObjIntf-ITXObject interface


Property Properties: Variant (Read-Write)
- belongs to GraphObjIntf-ITXObject interface
Parameter(s):
  • Index : Variant


Interface ITXObjectList (derived from GraphObjIntf-ITXCustomObjectList)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Item, Objects

This is the object list class usable in a "For Each" VB syntax.

Property Item: ITXObject (Read-Only)
- belongs to GraphObjIntf-ITXObjectList interface
Parameter(s):
  • ObjID : Variant

Interface ITXPatientData (derived from stdole-IDispatch)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Field, FieldDefs

This interface allows the access to any field belonging to PatientData. Whenever a field value needs to be got or set, the field must be passed using field's name as the parameter of Field property.<br/><br/> The following patient data fields are available in the Growth Chart component:<br/> <!--Read/Write fields:--> <ul> <li>ID - Identity of the child, patient file or country-specific personal number (e.g. SE or NO personnummer).</li> <li>Surname - Surname of the child</li> <li>FirstName - First name of the child</li> <li>IsMale - Important boolean that decides if the layouts and references should be for boys or girls</li> <li>BirthDate - Patient's date of birth</li> <li>Sex - Text used to display the sex of the child. Different for each version, see below.</li> <li>GAWeeks - The child's gestational age (integer, completed weeks). Title: "GA weeks".</li> <li>GADays - The child's gestational age (integer, days in addition to the weeks above). Title: "GA days".</li> <li>BL - Birth length (double, in cm)</li> <li>BW - Birth weight (double, in kg)</li> <li>BHCirc - Birth head circumference (double, in cm)</li> <li>MotherHeight - Height of the mother (double, in cm)</li> <li>MotherWeight - Weight of the mother (double, in kg)</li> <li>MotherHC - Mother's head circumference (double, in cm)</li> <li>FatherHeight - Height of the father (double, in cm)</li> <li>FatherWeight - Weight of the father (double, in kg)</li> <li>FatherHC - Father's head circumference (double, in cm)</li> <li>Notes - doctor notes on the patient file</li> <li>Twin - multiple births</li> <li>Adopted - boolean showing that the patient was adopted</li> <li>MenarcheDate - patient's Menarche date</li> <li>ShowAllPubInfo - (deprecated) This field is now always True, and that means that all available pubertal information are plotted in the puberty graph section.</li> </ul> <!-- <br></br> Read-only fields (calculated) <br></br> <ul> <li>TargetHeight - Target height (or mid parental height)</li> <li>BLSDS - Birth length SDS</li> <li>BWSDS - Birth weight SDS</li> <li>BHCircSDS - Birth head circumference SDS</li> <li>BLPerc - Birth length percentile</li> <li>BWPerc - Birth weight percentile</li> <li>BHCircPerc - Birth head circumference percentile</li> <li>MotherBMI - Mother's BMI</li> <li>FatherBMI - Father's BMI</li> <li>MotherHeightSDS - Mother's Height SDS</li> <li>MotherWeightSDS - Mother's Weight SDS</li> <li>MotherHCSDS - Mother's head circumference SDS</li> <li>FatherHeightSDS - Father's Height SDS</li> <li>FatherWeightSDS - Father's Weight SDS</li> <li>MotherBMISDS - Mother's BMI SDS</li> <li>FatherBMISDS - Father's BMI SDS</li> <li>FatherHCSDS - Father's head circumference SDS</li> <li>TargetHeightSDS - Target Height SDS</li> <li>TargetHeightPerc - Target height percentile</li> <li>MHeightPerc - Mother's height percentile</li> <li>MWeightPerc - Mother's weight percentile</li> <li>MHeadCircPerc - Mother's head circumference percentile</li> <li>MBMIPerc - Mother's BMI percentile</li> <li>FHeightPerc - Father's height percentile</li> <li>FWeightPerc - Father's weight percentile</li> <li>FHeadCircPerc - Father's head circumference percentile</li> <li>FBMIPerc - Father's BMI percentile</li> </ul> --> <br/> The Patient Sex label text depends on the chart component version: <ul> <li>US - Male, Female</li> <li>Swedish - Pojke, Flicka</li> <li>Norwegian - Gutt, Jente</li> <li>Icelandic - Karlkyns, Kvenkyns</li> <li>WHO - Male, Female</li> </ul> <br/> If the GAWeeks value is unknown, to be able to plot birth size values on premature charts, set the value to 40 weeks.


[+] Example
[VB]
AGraphOcx.PatientData.Field("BirthDate") = #6/1/2010#

[Delphi]
AGraphOcx.PatientData.Field['BirthDate'] := EncodeDate(2010, 06, 01);

//change the SurName label for tables and legend
AGraphOcx.PatientData.FieldDefs['SurName'].Title := 'New Surname Title';
Changed;

Property Field: Variant (Read-Write)
- belongs to GraphObjIntf-ITXPatientData interface
Parameter(s):
  • FieldId : Variant


Property FieldDefs: ITXDataFieldDefList (Read-Only)
- belongs to GraphObjIntf-ITXPatientData interface


Interface ITXReference (derived from GraphObjIntf-ITXObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)


This class represents a reference and gives access to reference properties such as Description and Publication.


[+] Example
[Delphi]
var
  AReference: ITXReference;
begin
  AReference := AGraphOcx.GraphSheet.Charts['Bottom'].References[0];
  ShowMessage(AReference.Name);
end;

[VB]
Dim AReference As ITXReference
Set AReference = AGraphOcx.GraphSheet.Charts("Bottom").References(0)
MsgBox (AReference.Name)

Property Description: String (Read-Only)
- belongs to GraphObjIntf-ITXReference interface


Property Publication: String (Read-Only)
- belongs to GraphObjIntf-ITXReference interface


Interface ITXReferenceList (derived from GraphObjIntf-ITXCustomObjectList)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Item, Objects

Derived from ITXCustomObjectList, it contains a list of available references. The Item property (default property) it gives access to a <a href="#GraphObjIntf-ITXReference">reference</a> object. The references can be accessed by their names or indexes. The Count property can be used to retrieve the number of the references.


[+] Example
[VB]
1. Using enumeration syntax

'this code sample fills-up a previously defined combobox with all available references
Dim AReference As ITXReference
With AGraphOcx.GraphSheet.Charts("ChartName")
  For Each AReference In .References
    ComboBox1.AddItem (AReference.Name)
  Next AReference
End With

2. By name

'this code sample sets a chart's reference
Dim AReference As ITXReference
With AGraphOcx.GraphSheet.Charts("ChartName")
  Set AReference = .References("ReferenceName")
End With

Property Item: ITXReference (Read-Only)
- belongs to GraphObjIntf-ITXReferenceList interface
Parameter(s):
  • Index : Variant

Interface ITXTemplateItemList (derived from stdole-IDispatch)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Names

This object contains a templates list. It is used by the <a href="#GraphObjIntf-ITXGraphAttributes">graph attributes</a> object to manage the available templates on the current sheet.


[+] Example
[VB]
'this code shows all available templates
Dim ATemplates As ITXTemplateItemList
Set ATemplates = AGraphOcx.GraphAttributes.TemplatesList
For i = 0 To ATemplates.Count - 1
  MsgBox (ATemplates.Names(i))
Next i

Property Count: Long (Read-Only)
- belongs to GraphObjIntf-ITXTemplateItemList interface

Property Names: String (Read-Only)
- belongs to GraphObjIntf-ITXTemplateItemList interface
Parameter(s):
  • Index : Long


Interface ITXTool (derived from GraphObjIntf-ITXObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Active, Name, Properties

This class implements an item from the ITXToolList collection, giving access to one of the graph sheet tool items.

Property Active: Boolean (Read-Write)
- belongs to GraphObjIntf-ITXTool interface

Interface ITXToolList (derived from GraphObjIntf-ITXCustomObjectList)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, Item, Objects

This class implements a collection that contains the graph sheet's tool list object (<a href="#GraphObjIntf-ITXTool">ITXTool</a>). Available tools are: PreviewToolBar, SettingsDialog and SettingsObject.<br/> <br/> <span class="bold">PreviewToolBar</span><br/> The PreviewToolBar tool allows managing the toolbar buttons and executing the corresponding button actions. <br/> The Show* properties allow showing and hiding a button.<br/> The Enable* properties allow enabling and disabling a button.<br/> The other properties execute the respective actions or return results depending on their meaning (PageNo returns current page number, PageNo = 5 goes to page 5 if possible).<br/> <br/> The tool has the following Properties: <ul> <li>Active - shows/hides the whole toolbar</li> <li>FirstPage - set True to go to the first page (for multiple-page charts); returns True if already on the first page</li> <li>ShowFirstPage - show/hide the FirstPage button</li> <li>EnableFirstPage - enable/disable the FirstPage button</li> <li>LastPage - set True to go to the last page (for multiple-page charts); returns True if already on the last page</li> <li>ShowLastPage - show/hide the LastPage button</li> <li>EnableLastPage - enable/disable the LastPage button</li> <li>PrevPage - set True to go to the previous page (for multiple-page charts)</li> <li>ShowPrevPage - show/hide the PrevPage button</li> <li>EnablePrevPage - enable/disable the PrevPage button</li> <li>NextPage - set True to go to the next page (for multiple-page charts)</li> <li>ShowNextPage - show/hide the NextPage button</li> <li>EnableNextPage - enable/disable the NextPage button</li> <li>PageNo - set to an integer (starting from 0) to go to a specific page number (for multiple-page charts); returns the current page number</li> <li>ShowPageNo - show/hide the PageNo</li> <li>EnablePageNo - enable/disable the PageNo</li> <li>PageCount - returns page count (for multiple-page charts this is bigger than 1)</li> <li>ShowPageCount - show/hide the PageCount button</li> <li>EnablePageCount - enable/disable the PageCount button</li> <li>ZoomPage - set to True to fit the chart page to the current form</li> <li>ShowZoomPage - show/hide the ZoomPage button</li> <li>EnableZoomPage - enable/disable the ZoomPage button</li> <li>ZoomPageWidth - set to True to fit the chart page to the current form width</li> <li>ShowZoomPageWidth - show/hide the ZoomPageWidth button</li> <li>EnableZoomPageWidth - enable/disable the ZoomPageWidth button</li> <li>ZoomPageHeight - set to True to fit the chart page to the current form height</li> <li>ShowZoomPageHeight - show/hide the ZoomPageHeight button</li> <li>EnableZoomPageHeight - enable/disable the ZoomPageHeight button</li> <li>ZoomNavigation - set to True to show the chart page navigation control</li> <li>ShowZoomNavigation - show/hide the ZoomNavigation control</li> <li>EnableZoomNavigation - enable/disable the ZoomNavigation control</li> <li>Print - set to True to print the all the chart pages</li> <li>ShowPrint - show/hide the Print button</li> <li>EnablePrint - enable/disable the Print button</li> <li>Export - set to True to Export all the chart pages (format available in the Export dialog)</li> <li>ShowExport - show/hide the Export button</li> <li>EnableExport - enable/disable the Export button</li> <li>Copy - set to True to Copy the current chart page to clipboard</li> <li>ShowCopy - show/hide the Copy to clipboard button</li> <li>EnableCopy - enable/disable the Copy to clipboard button</li> <li>Settings - set to True to show the Settings dialog</li> <li>ShowSettings - show/hide the Settings button</li> <li>EnableSettings - enable/disable the Settings button</li> </ul> <br/> <span class="bold">SettingsDialog</span><br/> The SettingDialog tool allows showing the settings dialog. The tool has the following Properties: <ul> <li>Active</li> </ul> <br/> <span class="bold">SettingsObject</span><br/> The SettingsObject tool allows directly managing the settings. <br/> The Show/Hide* properties allow showing and hiding a graph feature.<br/> The Selected* properties allow selecting a specific option for a graph feature.<br/> Some of the settings are only available on specific charts. <br/> <br/> The tool has the following Properties: <ul> <li>HideData - Show/hide all the patient's data</li> <li>Anonymous: Boolean - Show/hide patient's names and ID</li> <li>ShowParentalHeights - Show/hide patental measurements and right-side points</li> <li>ShowPubertalSection - Show/hide pubertal section on the page</li> <li>ShowCorrectedAge - Show/hide corrected age curve (where applicable)</li> <li>ShowAllPubInfo - Show/hide </li> <li>ShowBoneAgeLabel - Show/hide bone age labels</li> <li>ShowBoneAge - Show/hide bone ages</li> <li>ShowTodayLine - Show/hide today line</li> <li>ShowComments - Show/hide comments</li> <li>ShowRefShadow - Show/hide secondary growth reference</li> <li>ShowSortDescending - Show ascending/descending dates in the tables</li> <li>ShowGridVisits - Show/hide data table</li> <li>HideGraphLine - Show/hide line connecting the curve points</li> <li>ShowEvents - Show/hide events line</li> <li>ShowLongIntervals - Draw lines between distant measurements using a lighter color</li> <li>ShowIOTF35_40 - Show/hide BMI 35 and 40 IOTF lines</li> <li>ShowSIUnits - Switch from metrics to US imperial units</li> <li>SelectedLanguage - Select the chart's language, depending on country and available translations</li> <li>SelectedAgeRange - Select age range for measurement and calculation charts (0 = 1 year, 1 = 20 years,)</li> <li>SelectedRefSet - Show percentile or SD reference lines (0 = 5 to 95 percentiles, 1 = 3 to 97 percentiles, 2 = SDS)</li> </ul> <br/> See some examples below.


[+] Example
[VB]

With AGraphOcx.GraphSheet.Tools("PreviewToolBar")
    'hides ZoomPage button from the toolbar
    .ShowZoomPage = False

    'print current page
    .Print = True

    'hide toolbar
    .Active = False
End With

[Delphi]
V:= GraphX.GraphSheet.Tools['SettingsObject'];
V.ShowCorrectedAge:= not V.ShowCorrectedAge;
V.ShowCurveDiscontinuity:= not V.ShowCurveDiscontinuity;
V.Apply:= True;

Property Item: ITXTool (Read-Only)
- belongs to GraphObjIntf-ITXToolList interface
Parameter(s):
  • Index : Variant

Interface ITXVisitData (derived from GraphObjIntf-ITXObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Field, Name, Properties

This interface allows managing patient visits' data. Each field can be accessed using the Field property.<br/> Visit fields accessible using the Field("field name") syntax:<br/><br/> Read/Write fields <br/> <ul> <li>DateVisit - The date of the measurement</li> <li>CA - The chronological age in years at the date of measurement (calculated by the ActiveX)</li> <li>Height - Height of the child (double, in cm)</li> <li>Weight - Weight of the child (double, in kg)</li> <li>HeadCirc - The child's head circumference (double, in cm)</li> <li>Menarche - A boolean value indicating that this is the date of menarche (deprecated)</li> <li>PH - Pubic hair stage (integer, 1-5) for this visit</li> <li>BG - Breast stage (girls) or genital stage (boys) (integer, 1-5)</li> <li>TestisL - Left testicular volume (integer, in mL)</li> <li>TestisR - Right testicular volume (integer, in mL)</li> <li>Testis - (Norwegian only)</li> <li>PubertySelfEstimate - Text that can be used to indicate if pubertal development is self-estimated or not.</li> <li>Comment - Free text comment to this visit</li> <!--li>CAWeeks - internal</li--> <li>SitHeight: Sitting height (double, in cm)</li> <li>Span - Arm span (double, in cm)</li> <li>Foot - Foot length (double, in cm)</li> <li>Waist - Waist circumference (double, in cm)</li> <li>BA - Bone age in years for the child at this date. This draws a bone age marker on the chart for this visit</li> <li>BAType - Bone age method. Possible values and their corresponding default labels are: 0 (G&amp;P), 1 (TW2), 2 (RUS), 3 (Other)</li> <li>BATypeName - Used to override the BAType default labels (G&amp;P, TW2, RUS or Other)</li> <li>BAGP - Bone age G&amp;P (double, in years)</li> <li>BATW2 - Bone age TW II (20 bones) (double, in years)</li> <li>BATW2RUS - Bone age TW II RUS (double, in years)</li> <li>BATW3RUS - Bone age TW III RUS (double, in years)</li> <li>MeasuredAt - where the child was measured (e.g. city, hospital, doctor)</li> <li>HeightMeasureType - the way the child was measured: recumbent (1) or standing (2)</li> </ul> <br/> Read-only fields (calculated) <br/> <ul> <!-- <li>HV - Height velocity</li> <li>BMI - Body mass index. This field is calculated automatically</li> <li>SitHeightSDS - Sitting height SDS</li> <li>HeightSDS - Height SDS</li> <li>HeightPerc - Height percentile</li> <li>WeightSDS - Weight SDS</li> <li>WeightPerc - Weight percentile</li> <li>HeadCircSDS - Head circumference SDS</li> <li>HeadCircPerc - Head circumference percentile</li> <li>BMISDS - BMI SDS</li> <li>BMIPerc - BMI percentile</li> --> <li>LegLength - Leg length (double, in cm)</li> <!-- <li>LegLengthSDS - Leg length SDS</li> <li>LegLengthPerc - Leg length percentile</li> <li>HVSDS - Height velocity SDS</li> <li>HVPerc - Height velocity percentile</li> <li>HVSit: Sitting height velocity</li> <li>HVSitSDS - Sitting height velocity SDS</li> <li>HVSitPerc - Sitting height velocity percentile</li> <li>HVLegLength - Leg length velocity</li> <li>HVLegLengthSDS - Leg length velocity SDS</li> <li>HVLegLengthPerc - Leg length velocity percentile</li> --> <li>SHH - Relative sitting height (double, in cm)</li> <!-- <li>SHHSDS - Relative sitting height SDS</li> <li>SHHPerc - Relative sitting height percentile</li> <li>SpanSDS - Arm span SDS</li> <li>SpanPerc - Arm span percentile</li> <li>FootSDS - Foot length SDS</li> <li>FootPerc - Foot length percentile</li> <li>WaistSDS - Waist circumference SDS</li> <li>WaistPerc - Waist circumference percentile</li> <li>WFH - Weight for height</li> --> </ul> See below an example how to get a visit field's value.


[+] Example
[VB]
With AGraphOcx.VisitData(0)
  MsgBox "Date " + Str(.Field("DateVisit")) + " : Height = " + Str(.Field("Height"))
End With

Property Field: Variant (Read-Write)
- belongs to GraphObjIntf-ITXVisitData interface
Parameter(s):
  • FieldId : Variant


Interface ITXVisitDataList (derived from GraphObjIntf-ITXCustomObjectList)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Count, FieldDefs, Item, Objects

Methods: New

This class implements a collection that contains the patient's visit data objects (<a href="#GraphObjIntf-ITXVisitDataList">ITXVisitData)</a>. The visit objects can be created and added to the list using the New method and listed and accessed using the Item and Count properties.


[+] Example
[VB]
Set Graph = Server.CreateObject("USGrowthCharts.USAllGraph")
with Graph
    'adds all visits in a list
    'e.g. Date: 02/04/2008; Height: 120 cm
    listVisits.Clear
    Dim AItem As String
    For i = 0 To .VisitData.Count - 1
      AItem = "Date: " + Str(.VisitData(i).Field("DateVisit"))
      If .VisitData(i).Field("Height") Then
          AItem = AItem + "; " + .VisitData.FieldDefs("Height").Title + _
            ": " + Str(.VisitData(i).Field("Height")) + _
            " " + .VisitData.FieldDefs("Height").UnitName
      End If
      listVisits.AddItem (AItem)
    Next i
end with


[VB]
With AGraphOcx.VisitData(0)
  MsgBox "Date " + Str(.Field("DateVisit")) + " : Height = " + Str(.Field("Height"))
End With

Property FieldDefs: ITXDataFieldDefList (Read-Only)
- belongs to GraphObjIntf-ITXVisitDataList interface


Property Item: ITXVisitData (Read-Only)
- belongs to GraphObjIntf-ITXVisitDataList interface
Parameter(s):
  • Index : Long


Function New : ITXVisitData
- belongs to GraphObjIntf-ITXVisitDataList interface


Interface ITXVisualObject (derived from GraphObjIntf-ITXObject)
- belongs to GraphX Utility object interfaces component (GraphObjIntf.tlb)

Properties: Name, Properties, Visible

This class is the base class for all visible objects. E.g. ITXChart is a descendant of ITXVisualObject.

Property Visible: Boolean (Read-Write)
- belongs to GraphObjIntf-ITXVisualObject interface


footer


header

Austrian growth charts component

- File AustrianGrowthCharts.ocx v1.0.0.1 2018-06-26
Constants:
TxMouseButton
  • mbLeft = 0 (Long)
  • mbRight = 1 (Long)
  • mbMiddle = 2 (Long)

Interface IAustrianGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to Austrian growth charts component (AustrianGrowthCharts.ocx - version 1.0.0.1)


Procedure OnActivate
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Procedure OnClick
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Procedure OnCreate
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Procedure OnDblClick
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Procedure OnDeactivate
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Procedure OnDestroy
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Procedure OnKeyPress
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface
Parameter(s):
  • Key : Integer

Procedure OnPaint
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsEvents interface

Interface IAustrianGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to Austrian growth charts component (AustrianGrowthCharts.ocx - version 1.0.0.1)



<table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>0 - Körperhöhe, Gewicht 4-20 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>1 - Körperhöhe, Gewicht 0-4 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>2 - Körperhöhe, Sitzhöhe/Beinlange 0-20 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>3 - Gewicht 0-20 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>4 - Sitzhöhe, Beinlange 4-20 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>5 - BMI 0-18 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>6 - Wachstumsgeschw. 0-20 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>7 - Kopfumfang 0-6 J.</td></tr><tr><td>0 - Austrian</td><td>0 - Norm</td><td>8 - Kopfumfang 0-20 J.</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>0 - Körperhöhe</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>1 - Körpergewicht</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>2 - Kopfumfang</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>3 - Sitzhöhe</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>4 - Armspann</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>5 - Fußlänge</td></tr><tr><td>0 - Austrian</td><td>1 - Übersicht</td><td>6 - Taillenumfang</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>0 - Beinlänge</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>1 - Wachstumsgeschwindigkeit</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>2 - Zunahme Sitzhöhe</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>3 - Zunahme Beinlänge</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>4 - Prozentuale Sitzhöhe</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>5 - BMI</td></tr><tr><td>0 - Austrian</td><td>2 - Berechnet</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - Austrian</td><td>3 - Türk</td><td>0 - Körperhöhe, Gewicht 0-20 J.</td></tr><tr><td>0 - Austrian</td><td>3 - Türk</td><td>1 - Körperhöhe, Gewicht 0-4 J.</td></tr><tr><td>0 - Austrian</td><td>3 - Türk</td><td>2 - BMI 0-18 J.</td></tr><tr><td>0 - Austrian</td><td>4 - Asiatische</td><td>0 - Körperhöhe 0-20 J.</td></tr><tr><td>0 - Austrian</td><td>4 - Asiatische</td><td>1 - Körperhöhe 0-4 J.</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>0 - Körperlänge 0-6 Monate</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>1 - Körperlänge 6 Monate-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>2 - Körperlänge 0-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>3 - Körperhöhe 2-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>4 - Körperlänge/Körperhöhe 0-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>5 - Gewicht 0-6 Monate</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>6 - Gewicht 6 Monate-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>7 - Gewicht 0-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>8 - Gewicht 2-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>9 - Gewicht 0-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>10 - Kopfumfang 0-13 wochen</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>11 - Kopfumfang 0-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>12 - Kopfumfang 0-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>13 - BMI 0-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>14 - BMI 2-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>15 - BMI 0-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>16 - Gewicht zu Länge 0-2 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>17 - Gewicht zu Größe 2-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>5 - WHO</td><td>18 - Gewicht/KH 0-5 Jahre</td></tr><tr><td>0 - Austrian</td><td>6 - UTS</td><td>0 - Körperhöhe 0-21 J.</td></tr><tr><td>0 - Austrian</td><td>6 - UTS</td><td>1 - Wachstumsgeschw. 0-21 J.</td></tr><tr><td>0 - Austrian</td><td>6 - UTS</td><td>2 - DE Wachstumsgeschw. 0-21 J.</td></tr><tr><td>0 - Austrian</td><td>7 - Down</td><td>0 - Körperhöhe, Gewicht 4-20 J.</td></tr><tr><td>0 - Austrian</td><td>7 - Down</td><td>1 - Körperhöhe, Gewicht 0-4 J.</td></tr><tr><td>0 - Austrian</td><td>8 - Tabellen</td><td>0 - Tabelle</td></tr><tr><td>0 - Austrian</td><td>8 - Tabellen</td><td>1 - SDS-Liste</td></tr><tr><td>0 - Austrian</td><td>8 - Tabellen</td><td>2 - Perz-Liste</td></tr><tr><td>0 - Austrian</td><td>8 - Tabellen</td><td>3 - Alterskorrektur (SDS)</td></tr><tr><td>0 - Austrian</td><td>8 - Tabellen</td><td>4 - Alterskorrektur (Perz)</td></tr><tr><td>0 - Austrian</td><td>9 - Frühgeb.</td><td>0 - 22-44 Wochen</td></tr></table>

Property Active: Boolean (Read-Only)
- belongs to AustrianGrowthCharts-IAustrianGrowthChartsGraph interface

footer


header

Belgian growth charts component

- File BelgianGrowthCharts.ocx v2.1.0.5 2019-10-15
Constants:
TxMouseButton
  • mbLeft = 0 (Long)
  • mbRight = 1 (Long)
  • mbMiddle = 2 (Long)

Interface IBelgianGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to Belgian growth charts component (BelgianGrowthCharts.ocx - version 2.1.0.5)


Procedure OnActivate
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Procedure OnClick
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Procedure OnCreate
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Procedure OnDblClick
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Procedure OnDeactivate
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Procedure OnDestroy
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Procedure OnKeyPress
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface
Parameter(s):
  • Key : Integer

Procedure OnPaint
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsEvents interface

Interface IBelgianGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to Belgian growth charts component (BelgianGrowthCharts.ocx - version 2.1.0.5)



<table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - Belgian</td><td>0 - BE 2004</td><td>0 - Périm. crânien, taille, poids 0-1 an</td></tr><tr><td>0 - Belgian</td><td>0 - BE 2004</td><td>1 - Périm. crânien, taille, poids 1-5 ans</td></tr><tr><td>0 - Belgian</td><td>0 - BE 2004</td><td>2 - Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>0 - BE 2004</td><td>3 - IMC, croissance-taille 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>0 - Taille 0-6 mois</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>1 - Taille 6 m-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>2 - Taille 0-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>3 - Taille 2-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>4 - Taille 0-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>5 - Poids 0-6 mois</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>6 - Poids 6 m-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>7 - Poids 0-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>8 - Poids 2-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>9 - Poids 0-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>10 - Périm. crânien 0-13 semaines</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>11 - Périm. crânien 0-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>12 - Périm. crânien 0-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>13 - IMC 0-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>14 - IMC 2-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>15 - IMC 0-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>16 - Poids sur Taille 0-2 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>17 - Poids sur Taille 2-5 ans</td></tr><tr><td>0 - Belgian</td><td>1 - OMS</td><td>18 - Poids sur Taille 0-5 ans</td></tr><tr><td>0 - Belgian</td><td>2 - Turner</td><td>0 - Périm. crânien, taille, poids 0-1 an</td></tr><tr><td>0 - Belgian</td><td>2 - Turner</td><td>1 - Périm. crânien, taille, poids 1-5 ans</td></tr><tr><td>0 - Belgian</td><td>2 - Turner</td><td>2 - Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>2 - Turner</td><td>3 - IMC, croissance-taille 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>3 - Down</td><td>0 - Périm. crânien, taille, poids 0-1 an</td></tr><tr><td>0 - Belgian</td><td>3 - Down</td><td>1 - Périm. crânien, taille, poids 1-5 ans</td></tr><tr><td>0 - Belgian</td><td>3 - Down</td><td>2 - Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>0 - Prader-Willi Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>1 - Prader-Willi IMC, croissance-taille 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>2 - IRC Accroissement statural 0-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>3 - IRCT Accroissement statural 0-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>4 - Noonan Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>5 - Williams Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>4 - Autres syndromes</td><td>6 - Silver-Russel Taille, poids 2-20 ans</td></tr><tr><td>0 - Belgian</td><td>5 - Prématuré</td><td>0 - 24-44 semaines</td></tr><tr><td>0 - Belgian</td><td>5 - Prématuré</td><td>1 - 24-52 semaines</td></tr><tr><td>0 - Belgian</td><td>5 - Prématuré</td><td>2 - Données naissance</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>0 - Taille</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>1 - Poids</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>2 - Périm. crânien</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>3 - Taille assis(e)</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>4 - Envergure des bras</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>5 - Longueur du pied</td></tr><tr><td>0 - Belgian</td><td>6 - Mesures</td><td>6 - Tour de taille</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>0 - Longueur de jambe</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>1 - Croissance de la Taille</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>2 - Croissance de la Taille assis(e)</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>3 - Croissance de la Jambe</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>4 - Taille relative (assis)</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>5 - IMC</td></tr><tr><td>0 - Belgian</td><td>7 - Calculées</td><td>6 - IMC (IOTF)</td></tr><tr><td>0 - Belgian</td><td>8 - DS</td><td>0 - Taille et IMC</td></tr><tr><td>0 - Belgian</td><td>8 - DS</td><td>1 - Taille et Taille relative (assis)</td></tr><tr><td>0 - Belgian</td><td>8 - DS</td><td>2 - IMC et tour de taille</td></tr><tr><td>0 - Belgian</td><td>8 - DS</td><td>3 - Taille et croissance</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>0 - Liste</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>1 - Liste DS</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>2 - Liste Perc</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>3 - Liste des DS avec âge corrigé</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>4 - Liste Percentile avec âge corrigé</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>5 - Liste âge osseux</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>6 - Liste de taille adulte estimée</td></tr><tr><td>0 - Belgian</td><td>9 - Listes</td><td>7 - Liste de valeurs calculées</td></tr></table>

Property Active: Boolean (Read-Only)
- belongs to BelgianGrowthCharts-IBelgianGrowthChartsGraph interface

footer


header

Canadian growth charts component

- File CanadianGrowthCharts.ocx v1.0.0.2 2019-12-02
Constants:
TxMouseButton
  • mbLeft = 0 (Long)
  • mbRight = 1 (Long)
  • mbMiddle = 2 (Long)

Interface ICanadianGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to Canadian growth charts component (CanadianGrowthCharts.ocx - version 1.0.0.2)


Procedure OnActivate
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Procedure OnClick
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Procedure OnCreate
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Procedure OnDblClick
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Procedure OnDeactivate
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Procedure OnDestroy
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Procedure OnKeyPress
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface
Parameter(s):
  • Key : Integer

Procedure OnPaint
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsEvents interface

Interface ICanadianGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to Canadian growth charts component (CanadianGrowthCharts.ocx - version 1.0.0.2)



<table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - Canadian</td><td>0 - Canadian charts</td><td>0 - Length, Weight 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>0 - Canadian charts</td><td>1 - Height, Weight 2-19 yrs</td></tr><tr><td>0 - Canadian</td><td>0 - Canadian charts</td><td>2 - BMI 2-19 yrs</td></tr><tr><td>0 - Canadian</td><td>0 - Canadian charts</td><td>3 - HC, Weight for Length 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>0 - Length 0-6 months</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>1 - Length 6 m-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>2 - Length 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>3 - Height 2-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>4 - Height 0-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>5 - Weight 0-6 months</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>6 - Weight 6 m-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>7 - Weight 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>8 - Weight 2-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>9 - Weight 0-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>10 - Head circ. 0-13 weeks</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>11 - Head circ. 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>12 - Head circ. 0-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>13 - BMI 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>14 - BMI 2-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>15 - BMI 0-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>16 - Weight for Length 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>17 - Weight for Height 2-5 yrs</td></tr><tr><td>0 - Canadian</td><td>1 - WHO</td><td>18 - Weight for Height 0-5 yrs</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>0 - List</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>1 - SDS List</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>2 - Perc. List</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>3 - Corrected age (SDS)</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>4 - Corrected age (Perc)</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>5 - Bone age list</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>6 - Predicted adult height list</td></tr><tr><td>0 - Canadian</td><td>2 - Lists</td><td>7 - Calculated values list</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>0 - Height</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>1 - Weight</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>2 - Head circ.</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>3 - Sitting height</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>4 - Arm span</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>5 - Foot length</td></tr><tr><td>0 - Canadian</td><td>3 - Measurement</td><td>6 - Waist circ.</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>0 - Leg length</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>1 - Height velocity</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>2 - Sitting height velocity</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>3 - Leg length velocity</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>4 - Rel. sitting height</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>5 - BMI</td></tr><tr><td>0 - Canadian</td><td>4 - Calculated</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - Canadian</td><td>5 - SD scores</td><td>0 - Height &amp; BMI</td></tr><tr><td>0 - Canadian</td><td>5 - SD scores</td><td>1 - Height &amp; SHH</td></tr><tr><td>0 - Canadian</td><td>5 - SD scores</td><td>2 - BMI &amp; Waist</td></tr><tr><td>0 - Canadian</td><td>5 - SD scores</td><td>3 - Height &amp; Height velocity</td></tr><tr><td>0 - Canadian</td><td>6 - Turner</td><td>0 - Weight Height 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>6 - Turner</td><td>1 - Weight Height 2-20 yrs</td></tr><tr><td>0 - Canadian</td><td>6 - Turner</td><td>2 - BMI 2-20 yrs</td></tr><tr><td>0 - Canadian</td><td>7 - Down</td><td>0 - Weight Height 0-2 yrs</td></tr><tr><td>0 - Canadian</td><td>7 - Down</td><td>1 - Weight Height 2-20 yrs</td></tr><tr><td>0 - Canadian</td><td>7 - Down</td><td>2 - Head circ. 0-5 yrs</td></tr><tr><td>0 - Canadian</td><td>8 - Premature</td><td>0 - 22-44 weeks</td></tr><tr><td>0 - Canadian</td><td>8 - Premature</td><td>1 - 22-52 weeks</td></tr><tr><td>0 - Canadian</td><td>8 - Premature</td><td>2 - Patient birth</td></tr></table>


[+] Example
[VB]
Set Graph = Server.CreateObject("CanadianGrowthCharts.XCanadianGrowthCharts")
'Show the Canadian "BMI 2-19 yrs"
With Graph.GraphAttributes
    .template = 0    '0 - Canadian
    .graphtype = 0   '0 - Canadian charts
    .agerange = 2    '2 - BMI 2-19 yrs
    .ApplyAttributes
End With

Property Active: Boolean (Read-Only)
- belongs to CanadianGrowthCharts-ICanadianGrowthChartsGraph interface

footer


header

French growth charts component

- File FrenchGrowthCharts.ocx v2.1.0.8 2019-10-15

Interface IFrenchGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to French growth charts component (FrenchGrowthCharts.ocx - version 2.1.0.8)


Procedure OnActivate
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Procedure OnClick
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Procedure OnCreate
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Procedure OnDblClick
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Procedure OnDeactivate
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Procedure OnDestroy
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Procedure OnKeyPress
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface
Parameter(s):
  • Key : Integer

Procedure OnPaint
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsEvents interface

Interface IFrenchGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to French growth charts component (FrenchGrowthCharts.ocx - version 2.1.0.8)



The French Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - French</td><td>0 - Français</td><td>0 - Taille, Poids 0-20 ans</td></tr><tr><td>0 - French</td><td>0 - Français</td><td>1 - Taille, Poids 0-36 mois</td></tr><tr><td>0 - French</td><td>0 - Français</td><td>2 - IMC IOTF 0-18 ans</td></tr><tr><td>0 - French</td><td>0 - Français</td><td>3 - Accroissement statural 0-20 ans</td></tr><tr><td>0 - French</td><td>0 - Français</td><td>4 - Périmètre crânien 0-36 mois</td></tr><tr><td>0 - French</td><td>0 - Français</td><td>5 - Périmètre crânien 0-6 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>0 - Taille 0-5 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>1 - Poids 0-5 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>2 - Périm. crânien 0-5 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>3 - IMC 0-5 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>4 - Taille 5-19 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>5 - Poids 5-10 ans</td></tr><tr><td>0 - French</td><td>1 - OMS</td><td>6 - IMC 5-19 ans</td></tr><tr><td>0 - French</td><td>2 - Turner</td><td>0 - Taille 0-20 ans</td></tr><tr><td>0 - French</td><td>2 - Turner</td><td>1 - Accroissement statural 0-20 ans</td></tr><tr><td>0 - French</td><td>3 - Down</td><td>0 - Taille, Poids 0-20 ans</td></tr><tr><td>0 - French</td><td>3 - Down</td><td>1 - Périmètre crânien 0-6 ans</td></tr><tr><td>0 - French</td><td>4 - PWS</td><td>0 - Taille, Poids 0-20 ans</td></tr><tr><td>0 - French</td><td>4 - PWS</td><td>1 - Taille, Poids 0-36 mois</td></tr><tr><td>0 - French</td><td>4 - PWS</td><td>2 - IMC IOTF 0-18 ans</td></tr><tr><td>0 - French</td><td>5 - Noonan</td><td>0 - Taille 0-20 ans</td></tr><tr><td>0 - French</td><td>6 - SRS</td><td>0 - Taille, Poids 0-20 ans</td></tr><tr><td>0 - French</td><td>6 - SRS</td><td>1 - Périmètre crânien 0-6 ans</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>0 - AUDIPOG 22-44 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>1 - Olsen 22-44 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>2 - Usher 22-44 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>3 - Fenton 22-52 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>4 - Niklasson 22-44 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>5 - Niklasson 22-52 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>6 - Intergrowth-21st 22-44 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>7 - Intergrowth-21st 22-52 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>8 - WHO 2006 0-18 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>9 - Sempé 1979 0-18 semaines</td></tr><tr><td>0 - French</td><td>7 - Prématuré</td><td>10 - Données naissance</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>0 - Liste</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>1 - Liste DS</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>2 - Liste Perc.</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>3 - Liste des DS avec âge corrigé</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>4 - Liste Percentile avec âge corrigé</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>5 - Liste âge osseux</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>6 - Liste de taille adulte estimée</td></tr><tr><td>0 - French</td><td>8 - Listes</td><td>7 - Liste de valeurs calculées</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>0 - Taille</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>1 - Poids</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>2 - Périmètre crânien</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>3 - Taille assis(e)</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>4 - Envergure des bras</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>5 - Longueur du pied</td></tr><tr><td>0 - French</td><td>9 - Mesures</td><td>6 - Tour de taille</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>0 - Longueur de jambe</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>1 - Croissance de la Taille</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>2 - Croissance de la Taille assis(e)</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>3 - Croissance de la Jambe</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>4 - Taille relative (assis)</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>5 - Indice de masse corporelle</td></tr><tr><td>0 - French</td><td>10 - Calculées</td><td>6 - IMC (IOTF)</td></tr><tr><td>0 - French</td><td>11 - Déviation standard</td><td>0 - Taille et IMC</td></tr><tr><td>0 - French</td><td>11 - Déviation standard</td><td>1 - Taille et Taille relative (assis)</td></tr><tr><td>0 - French</td><td>11 - Déviation standard</td><td>2 - IMC et tour de taille</td></tr><tr><td>0 - French</td><td>11 - Déviation standard</td><td>3 - Taille et croissance</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("FrenchGrowthCharts.XFrenchGrowthCharts")
'Show the French "Croissance - Taille 0-20 ans" chart
With Graph.GraphAttributes
    .template = 0    '0 - French
    .graphtype = 0   '0 - Français
    .agerange = 1    '1 - Croissance - Taille 0-20 ans
    .ApplyAttributes
End With

Property Active: Boolean (Read-Only)
- belongs to FrenchGrowthCharts-IFrenchGrowthChartsGraph interface

footer


header

German growth charts component

- File GermanGrowthCharts.ocx v2.1.0.7 2019-12-04

Interface IGermanGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to German growth charts component (GermanGrowthCharts.ocx - version 2.1.0.7)


Procedure OnActivate
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Procedure OnClick
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Procedure OnCreate
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Procedure OnDblClick
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Procedure OnDeactivate
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Procedure OnDestroy
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Procedure OnKeyPress
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface
Parameter(s):
  • Key : Integer

Procedure OnPaint
- belongs to GermanGrowthCharts-IGermanGrowthChartsEvents interface

Interface IGermanGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to German growth charts component (GermanGrowthCharts.ocx - version 2.1.0.7)



The German Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>0 - Körperhöhe, Gewicht 0-20 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>1 - Länge / Grösse - Gewicht 0-5 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>2 - Länge, Gewicht 0-2 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>3 - BMI 0-18 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>4 - Wachstumsgeschw. 0-20 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>5 - Kopfumfang 0-6 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>6 - Kopfumfang 0-20 J.</td></tr><tr><td>0 - German</td><td>0 - Norm</td><td>7 - Extremities-trunk ratio for height</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>0 - Körperhöhe</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>1 - Körpergewicht</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>2 - Kopfumfang</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>3 - Sitzhöhe</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>4 - Armspann</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>5 - Fußlänge</td></tr><tr><td>0 - German</td><td>1 - Übersicht</td><td>6 - Taillenumfang</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>0 - Beinlänge</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>1 - Wachstumsgeschwindigkeit</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>2 - Zunahme Sitzhöhe</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>3 - Zunahme Beinlänge</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>4 - Prozentuale Sitzhöhe</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>5 - BMI</td></tr><tr><td>0 - German</td><td>2 - Berechnet</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - German</td><td>3 - SDS</td><td>0 - Körperhöhe und BMI</td></tr><tr><td>0 - German</td><td>3 - SDS</td><td>1 - Körperhöhe und Prozentuale Sitzhöhe</td></tr><tr><td>0 - German</td><td>3 - SDS</td><td>2 - BMI und Taillenumfang</td></tr><tr><td>0 - German</td><td>3 - SDS</td><td>3 - Körperhöhe und Wachstumsgeschwindigkeit</td></tr><tr><td>0 - German</td><td>4 - Türk</td><td>0 - Körperhöhe, Gewicht 0-20 J.</td></tr><tr><td>0 - German</td><td>4 - Türk</td><td>1 - Länge / Grösse - Gewicht 0-5 J.</td></tr><tr><td>0 - German</td><td>4 - Türk</td><td>2 - Länge, Gewicht 0-2 J.</td></tr><tr><td>0 - German</td><td>4 - Türk</td><td>3 - BMI 0-18 J.</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>0 - Körperlänge 0-6 Monate</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>1 - Körperlänge 6 Monate-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>2 - Körperlänge 0-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>3 - Körperhöhe 2-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>4 - Körperlänge/Körperhöhe 0-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>5 - Körperhöhe 5-19 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>6 - Gewicht 0-6 Monate</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>7 - Gewicht 6 Monate-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>8 - Gewicht 0-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>9 - Gewicht 2-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>10 - Gewicht 0-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>11 - Gewicht 5-10 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>12 - Kopfumfang 0-13 wochen</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>13 - Kopfumfang 0-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>14 - Kopfumfang 0-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>15 - BMI 0-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>16 - BMI 2-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>17 - BMI 0-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>18 - BMI 5-19 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>19 - Gewicht zu Länge 0-2 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>20 - Gewicht zu Länge 2-5 Jahre</td></tr><tr><td>0 - German</td><td>5 - WHO</td><td>21 - Gewicht zu Länge 0-5 Jahre</td></tr><tr><td>0 - German</td><td>6 - UTS</td><td>0 - Körperhöhe 0-21 J.</td></tr><tr><td>0 - German</td><td>6 - UTS</td><td>1 - Wachstumsgeschw. 0-21 J.</td></tr><tr><td>0 - German</td><td>7 - PWS</td><td>0 - Körperhöhe, Gewicht 0-20 J.</td></tr><tr><td>0 - German</td><td>7 - PWS</td><td>1 - Länge, Gewicht 0-2 J.</td></tr><tr><td>0 - German</td><td>7 - PWS</td><td>2 - BMI 0-18 J.</td></tr><tr><td>0 - German</td><td>8 - Down</td><td>0 - Körperhöhe, Gewicht 0-20 J.</td></tr><tr><td>0 - German</td><td>8 - Down</td><td>1 - Länge, Gewicht 0-2 J.</td></tr><tr><td>0 - German</td><td>9 - Noonan</td><td>0 - Körperhöhe</td></tr><tr><td>0 - German</td><td>10 - CRI (0-25)</td><td>0 - Körperhöhe</td></tr><tr><td>0 - German</td><td>10 - CRI (0-25)</td><td>1 - Wachstumsgeschwindigkeit</td></tr><tr><td>0 - German</td><td>11 - CRI (25-50)</td><td>0 - Körperhöhe</td></tr><tr><td>0 - German</td><td>11 - CRI (25-50)</td><td>1 - Wachstumsgeschwindigkeit</td></tr><tr><td>0 - German</td><td>12 - SRS</td><td>0 - Körperhöhe, Gewicht 0-20 J.</td></tr><tr><td>0 - German</td><td>12 - SRS</td><td>1 - Kopfumfang 0-6 J.</td></tr><tr><td>0 - German</td><td>13 - Williams</td><td>0 - Körperhöhe</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>0 - Tabelle</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>1 - SDS-Liste</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>2 - Perz-Liste</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>3 - Alterskorrektur (SDS)</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>4 - Alterskorrektur (Perz)</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>5 - Knochenalter</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>6 - Prospektive Endgröße</td></tr><tr><td>0 - German</td><td>14 - Tabellen</td><td>7 - Berechnete Werte</td></tr><tr><td>0 - German</td><td>15 - Frühgeb.</td><td>0 - 22-44 Wochen</td></tr><tr><td>0 - German</td><td>15 - Frühgeb.</td><td>1 - 22-34 Wochen</td></tr><tr><td>0 - German</td><td>15 - Frühgeb.</td><td>2 - 32-44 Wochen</td></tr><tr><td>0 - German</td><td>15 - Frühgeb.</td><td>3 - 22-52 Wochen</td></tr><tr><td>0 - German</td><td>15 - Frühgeb.</td><td>4 - Geburt data Patienten und Eltern</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("GermanGrowthCharts.XGermanGrowthCharts")
'Show the German "Wachstumsgeschw. 0-20 J." chart
With Graph.GraphAttributes
    .template = 0    '0 - German
    .graphtype = 0   '0 - Norm
    .agerange = 3    '3 - Wachstumsgeschw. 0-20 J.
    .ApplyAttributes
End With

Property Active: Boolean (Read-Only)
- belongs to GermanGrowthCharts-IGermanGrowthChartsGraph interface

footer


header

Icelandic growth charts component

- File IcelandicGrowthCharts.ocx v3.0.0.9 2018-06-26

Interface IIcelandicGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to Icelandic growth charts component (IcelandicGrowthCharts.ocx - version 3.0.0.9)


Interface IIcelandicGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to Icelandic growth charts component (IcelandicGrowthCharts.ocx - version 3.0.0.9)



The Icelandic Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>0 - 0-2 ár</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>1 - 2-7 ár</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>2 - 0-7 ár</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>3 - 5-18 ár</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>4 - BMI</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>5 - BMI (IOTF)</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>6 - BMI (liggjandi A4)</td></tr><tr><td>0 - Icelandic</td><td>0 - Íslenska</td><td>7 - BMI (IOTF) (liggjandi A4)</td></tr><tr><td>0 - Icelandic</td><td>1 - Down</td><td>0 - 0-2 ár</td></tr><tr><td>0 - Icelandic</td><td>1 - Down</td><td>1 - 2-7 ár</td></tr><tr><td>0 - Icelandic</td><td>1 - Down</td><td>2 - 0-7 ár</td></tr><tr><td>0 - Icelandic</td><td>1 - Down</td><td>3 - 5-18 ár</td></tr><tr><td>0 - Icelandic</td><td>2 - Turner</td><td>0 - 0-2 ár</td></tr><tr><td>0 - Icelandic</td><td>2 - Turner</td><td>1 - 2-7 ár</td></tr><tr><td>0 - Icelandic</td><td>2 - Turner</td><td>2 - 0-7 ár</td></tr><tr><td>0 - Icelandic</td><td>2 - Turner</td><td>3 - 5-18 ár</td></tr><tr><td>0 - Icelandic</td><td>2 - Turner</td><td>4 - BMI</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>0 - 0-2 ár</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>1 - 2-7 ár</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>2 - 0-7 ár</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>3 - 5-18 ár</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>4 - BMI</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>5 - BMI (IOTF)</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>6 - BMI (liggjandi A4)</td></tr><tr><td>0 - Icelandic</td><td>3 - Utökade</td><td>7 - BMI (IOTF) (liggjandi A4)</td></tr><tr><td>0 - Icelandic</td><td>4 - ótímabært</td><td>0 - 22-44 vikur</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>0 - Hæð</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>1 - Þyngd</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>2 - Höfuðummál</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>3 - Sitjandihæð</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>4 - Faðmlengd</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>5 - Lengd fótar</td></tr><tr><td>0 - Icelandic</td><td>5 - Mælingar</td><td>6 - Mittismál</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>0 - Lengd ganglima</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>1 - Vaxtarhraði</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>2 - Vaxtarhraði fyrir sitjandihæð</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>3 - Vaxtarhraði fyrir lengd ganglima</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>4 - Hlutfallsleg sitjandihæð</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>5 - BMI</td></tr><tr><td>0 - Icelandic</td><td>6 - Reiknað</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - Icelandic</td><td>7 - Listi</td><td>0 - Listi</td></tr><tr><td>0 - Icelandic</td><td>7 - Listi</td><td>1 - SDS listi</td></tr><tr><td>0 - Icelandic</td><td>7 - Listi</td><td>2 - Perc. listi</td></tr><tr><td>0 - Icelandic</td><td>7 - Listi</td><td>3 - Leiðréttur aldur (SDS)</td></tr><tr><td>0 - Icelandic</td><td>7 - Listi</td><td>4 - Leiðréttur aldur (Perc)</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("IcelandicGrowthCharts.XIcelandicGrowthCharts")
'Show the Icelandic "0-7 years" chart
With Graph.GraphAttributes
    .template = 0    '0 - Icelandic
    .graphtype = 0   '0 - Íslenska
    .agerange = 2    '2 - 0-7 ár
    .ApplyAttributes
End With

footer


header

Norwegian growth charts component

- File NorwegianGrowthCharts.ocx v2.1.0.21 2019-03-20

Interface INorwegianGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to Norwegian growth charts component (NorwegianGrowthCharts.ocx - version 2.1.0.21)


Interface INorwegianGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to Norwegian growth charts component (NorwegianGrowthCharts.ocx - version 2.1.0.21)



The Norwegian Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - Norwegian</td><td>0 - BGS</td><td>0 - Lengde, Vekt, Hodeomkrets 0-1 år</td></tr><tr><td>0 - Norwegian</td><td>0 - BGS</td><td>1 - Lengde, Vekt, Hodeomkrets 1-5 år</td></tr><tr><td>0 - Norwegian</td><td>0 - BGS</td><td>2 - Lengde, Vekt 4-19 år</td></tr><tr><td>0 - Norwegian</td><td>0 - BGS</td><td>3 - Vekt for Lengde 0-5 år</td></tr><tr><td>0 - Norwegian</td><td>0 - BGS</td><td>4 - KMI 0-19 år</td></tr><tr><td>0 - Norwegian</td><td>0 - BGS</td><td>5 - Mageomkrets, Mage/Høyde 4-19 år</td></tr><tr><td>0 - Norwegian</td><td>1 - 1983-1988</td><td>0 - Lengde, Vekt 0-6 år</td></tr><tr><td>0 - Norwegian</td><td>1 - 1983-1988</td><td>1 - Lengde, Vekt, Pub. 4-17 år</td></tr><tr><td>0 - Norwegian</td><td>1 - 1983-1988</td><td>2 - Hodeomkrets 0-4 år, Vekt 0-2 år</td></tr><tr><td>0 - Norwegian</td><td>1 - 1983-1988</td><td>3 - Hodeomkrets 4-17 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>0 - Lengde 0-6 mnd</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>1 - Lengde 6 mnd-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>2 - Lengde 0-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>3 - Høyde 2-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>4 - Høyde 0-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>5 - Vekt 0-6 mnd</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>6 - Vekt 6 mnd-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>7 - Vekt 0-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>8 - Vekt 2-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>9 - Vekt 0-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>10 - Hodeomkrets 0-13 uker</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>11 - Hodeomkrets 0-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>12 - Hodeomkrets 0-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>13 - KMI 0-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>14 - KMI 2-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>15 - KMI 0-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>16 - Vekt for Lengde 0-2 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>17 - Vekt for Høyde 2-5 år</td></tr><tr><td>0 - Norwegian</td><td>2 - WHO</td><td>18 - Vekt for Høyde 0-5 år</td></tr><tr><td>0 - Norwegian</td><td>3 - Down</td><td>0 - Lengde, Vekt, Hodeomkrets 0-1 år</td></tr><tr><td>0 - Norwegian</td><td>3 - Down</td><td>1 - Lengde, Vekt, Hodeomkrets 1-5 år</td></tr><tr><td>0 - Norwegian</td><td>3 - Down</td><td>2 - Lengde, Vekt 4-19 år</td></tr><tr><td>0 - Norwegian</td><td>4 - Turner</td><td>0 - Lengde, Vekt, Hodeomkrets 0-1 år</td></tr><tr><td>0 - Norwegian</td><td>4 - Turner</td><td>1 - Lengde, Vekt, Hodeomkrets 1-5 år</td></tr><tr><td>0 - Norwegian</td><td>4 - Turner</td><td>2 - Lengde, Vekt 4-19 år</td></tr><tr><td>0 - Norwegian</td><td>4 - Turner</td><td>3 - KMI 0-19 år</td></tr><tr><td>0 - Norwegian</td><td>5 - PWS</td><td>0 - Lengde, Vekt, Hodeomkrets 1-5 år</td></tr><tr><td>0 - Norwegian</td><td>5 - PWS</td><td>1 - Lengde, Vekt 4-19 år</td></tr><tr><td>0 - Norwegian</td><td>5 - PWS</td><td>2 - KMI 0-19 år</td></tr><tr><td>0 - Norwegian</td><td>6 - Prematur</td><td>0 - 22-44 uker</td></tr><tr><td>0 - Norwegian</td><td>6 - Prematur</td><td>1 - 22-50 uker</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>0 - Lengde</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>1 - Vekt</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>2 - Hodeomkrets</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>3 - Sittehøyde</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>4 - Armspenn</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>5 - Fotlengde</td></tr><tr><td>0 - Norwegian</td><td>7 - Måling</td><td>6 - Mageomkrets</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>0 - Benlengde</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>1 - Veksthastighet</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>2 - Veksthastighet sittehøyde</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>3 - Veksthastighet benlengde</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>4 - Relativ sittehøyde</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>5 - KMI</td></tr><tr><td>0 - Norwegian</td><td>8 - Beregnet</td><td>6 - KMI (IOTF)</td></tr><tr><td>0 - Norwegian</td><td>9 - SD-scores</td><td>0 - Lengde og KMI</td></tr><tr><td>0 - Norwegian</td><td>9 - SD-scores</td><td>1 - Lengde og Relativ sittehøyde</td></tr><tr><td>0 - Norwegian</td><td>9 - SD-scores</td><td>2 - KMI og Mageomkrets</td></tr><tr><td>0 - Norwegian</td><td>9 - SD-scores</td><td>3 - Lengde og Veksthastighet</td></tr><tr><td>0 - Norwegian</td><td>10 - Lister</td><td>0 - Besøksliste</td></tr><tr><td>0 - Norwegian</td><td>10 - Lister</td><td>1 - Besøksliste (SDS)</td></tr><tr><td>0 - Norwegian</td><td>10 - Lister</td><td>2 - Besøksliste (Pers)</td></tr><tr><td>0 - Norwegian</td><td>10 - Lister</td><td>3 - Korrigert alder (SDS)</td></tr><tr><td>0 - Norwegian</td><td>10 - Lister</td><td>4 - Korrigert alder (Pers)</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("NorwegianGrowthCharts.XNorwegianGrowthCharts")
'Show the Norwegian "Height Weight 4-19 years" 2009 chart
With Graph.GraphAttributes
    .template = 0    '0 - Norwegian
    .graphtype = 0   '0 - 2009
    .agerange = 2    '2 - Lengde, Vekt 4-19 år
    .ApplyAttributes
End With

footer


header

Swedish growth charts component

- File SwedishGrowthCharts.ocx v3.1.0.43 2019-10-23

Interface ISwedishGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to Swedish growth charts component (SwedishGrowthCharts.ocx - version 3.1.0.43)


Interface ISwedishGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to Swedish growth charts component (SwedishGrowthCharts.ocx - version 3.1.0.43)



The Swedish Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>0 - 0-2 år</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>1 - 2-7 år</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>2 - 0-7 år</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>3 - 5-18 år</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>4 - BMI</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>5 - BMI (IOTF)</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>6 - BMI (Liggande A4)</td></tr><tr><td>0 - Swedish</td><td>0 - Svenska</td><td>7 - BMI (IOTF) (Liggande A4)</td></tr><tr><td>0 - Swedish</td><td>1 - Down</td><td>0 - 0-2 år</td></tr><tr><td>0 - Swedish</td><td>1 - Down</td><td>1 - 2-7 år</td></tr><tr><td>0 - Swedish</td><td>1 - Down</td><td>2 - 0-7 år</td></tr><tr><td>0 - Swedish</td><td>1 - Down</td><td>3 - 5-18 år</td></tr><tr><td>0 - Swedish</td><td>2 - Turner</td><td>0 - 0-2 år</td></tr><tr><td>0 - Swedish</td><td>2 - Turner</td><td>1 - 2-7 år</td></tr><tr><td>0 - Swedish</td><td>2 - Turner</td><td>2 - 0-7 år</td></tr><tr><td>0 - Swedish</td><td>2 - Turner</td><td>3 - 5-18 år</td></tr><tr><td>0 - Swedish</td><td>2 - Turner</td><td>4 - BMI</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>0 - 0-2 år</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>1 - 2-7 år</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>2 - 0-7 år</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>3 - 5-18 år</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>4 - BMI</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>5 - BMI (IOTF)</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>6 - BMI (Liggande A4)</td></tr><tr><td>0 - Swedish</td><td>3 - Utökade</td><td>7 - BMI (IOTF) (Liggande A4)</td></tr><tr><td>0 - Swedish</td><td>4 - Nyfödda</td><td>0 - 22-44 veckor</td></tr><tr><td>0 - Swedish</td><td>4 - Nyfödda</td><td>1 - Födelseuppgifter</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>0 - Längd</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>1 - Vikt</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>2 - Huvudomfång</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>3 - Sitthöjd</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>4 - Armspann</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>5 - Fotlängd</td></tr><tr><td>0 - Swedish</td><td>5 - Mätvärden</td><td>6 - Midjemått</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>0 - Benlängd</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>1 - Tillväxthastighet</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>2 - Tillväxt sitthöjd</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>3 - Tillväxt benlängd</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>4 - Relativ sitthöjd</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>5 - BMI</td></tr><tr><td>0 - Swedish</td><td>6 - Beräknade</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - Swedish</td><td>7 - SDS kurvor</td><td>0 - Längd, BMI</td></tr><tr><td>0 - Swedish</td><td>7 - SDS kurvor</td><td>1 - Längd, Rel sitthöjd</td></tr><tr><td>0 - Swedish</td><td>7 - SDS kurvor</td><td>2 - BMI, Midja</td></tr><tr><td>0 - Swedish</td><td>7 - SDS kurvor</td><td>3 - Längd, Tillväxt</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>0 - Besökslista</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>1 - Besökslista (SDS)</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>2 - Besökslista (Perc)</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>3 - Korrigerad ålder (SDS)</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>4 - Korrigerad ålder (Perc)</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>5 - Skelettålder</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>6 - Beräknad slutlängd</td></tr><tr><td>0 - Swedish</td><td>8 - Listor</td><td>7 - Beräknade värden</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>0 - Huvudomf. 0-13 veckor</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>1 - Längd 0-6 mån</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>2 - Vikt 0-6 mån</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>3 - Längd 6 mån-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>4 - Vikt 6 mån-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>5 - Längd 0-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>6 - Vikt 0-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>7 - Huvudomf. 0-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>8 - BMI 0-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>9 - Vikt för längd 0-2 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>10 - Längd 2-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>11 - Vikt 2-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>12 - BMI 2-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>13 - Vikt för längd 2-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>14 - Längd 0-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>15 - Vikt 0-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>16 - Huvudomf. 0-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>17 - BMI 0-5 år</td></tr><tr><td>1 - WHO</td><td>0 - 0-5 år</td><td>18 - Vikt för längd 0-5 år</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("SwedishGrowthCharts.XSwedishGrowthCharts")
'Show the Swedish "BVC 2-7 years" chart
With Graph.GraphAttributes
    .template = 0    '0 - Swedish
    .graphtype = 0   '0 - Svenska
    .agerange = 1    '1 - 2-7 år 
    .ApplyAttributes
End With

footer


header

UK growth charts component

- File UKGrowthCharts.ocx v2.1.0.8 2019-10-14

Interface IUKGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to UK growth charts component (UKGrowthCharts.ocx - version 2.1.0.8)


Procedure OnActivate
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Procedure OnClick
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Procedure OnCreate
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Procedure OnDblClick
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Procedure OnDeactivate
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Procedure OnDestroy
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Procedure OnKeyPress
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface
Parameter(s):
  • Key : Integer

Procedure OnPaint
- belongs to UKGrowthCharts-IUKGrowthChartsEvents interface

Interface IUKGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to UK growth charts component (UKGrowthCharts.ocx - version 2.1.0.8)



The UK Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - English</td><td>0 - 2-18 years</td><td>0 - H-W 2-8 years</td></tr><tr><td>0 - English</td><td>0 - 2-18 years</td><td>1 - H-W 8-18 years</td></tr><tr><td>0 - English</td><td>0 - 2-18 years</td><td>2 - H 4-20 years</td></tr><tr><td>0 - English</td><td>0 - 2-18 years</td><td>3 - W 4-20 years</td></tr><tr><td>0 - English</td><td>0 - 2-18 years</td><td>4 - BMI 0-20 years</td></tr><tr><td>0 - English</td><td>0 - 2-18 years</td><td>5 - Sitting height, Leg length 0-19 years</td></tr><tr><td>0 - English</td><td>1 - 0-4 years</td><td>0 - HC-L-W 0-1 year</td></tr><tr><td>0 - English</td><td>1 - 0-4 years</td><td>1 - HC-L-W 1-4 years</td></tr><tr><td>0 - English</td><td>2 - PCHR</td><td>0 - L 0-2 years</td></tr><tr><td>0 - English</td><td>2 - PCHR</td><td>1 - H 2-4 years</td></tr><tr><td>0 - English</td><td>2 - PCHR</td><td>2 - W 0-1 year</td></tr><tr><td>0 - English</td><td>2 - PCHR</td><td>3 - W 1-4 years</td></tr><tr><td>0 - English</td><td>2 - PCHR</td><td>4 - W-HC 32-42 weeks</td></tr><tr><td>0 - English</td><td>2 - PCHR</td><td>5 - HC 0-2 years</td></tr><tr><td>0 - English</td><td>3 - NICM</td><td>0 - L-HC-W 23-42 weeks</td></tr><tr><td>0 - English</td><td>3 - NICM</td><td>1 - L-HC-W 2 weeks-6 months</td></tr><tr><td>0 - English</td><td>3 - NICM</td><td>2 - L-HC-W 6 months-2 years</td></tr><tr><td>0 - English</td><td>4 - Turner</td><td>0 - L-W-HC 0-1 year</td></tr><tr><td>0 - English</td><td>4 - Turner</td><td>1 - H-W-HC 1-4 years</td></tr><tr><td>0 - English</td><td>4 - Turner</td><td>2 - H-W 2-8 years</td></tr><tr><td>0 - English</td><td>4 - Turner</td><td>3 - H-W 8-18 years</td></tr><tr><td>0 - English</td><td>5 - Down</td><td>0 - L-W-HC 0-1 year</td></tr><tr><td>0 - English</td><td>5 - Down</td><td>1 - H-W-HC 1-4 years</td></tr><tr><td>0 - English</td><td>5 - Down</td><td>2 - H-W 2-8 years</td></tr><tr><td>0 - English</td><td>5 - Down</td><td>3 - H-W 8-18 years</td></tr><tr><td>0 - English</td><td>6 - CPCM</td><td>0 - H-W 2-8 years</td></tr><tr><td>0 - English</td><td>6 - CPCM</td><td>1 - H-W 8-18 years</td></tr><tr><td>0 - English</td><td>6 - CPCM</td><td>2 - BMI 2-20 yrs</td></tr><tr><td>0 - English</td><td>7 - Premature</td><td>0 - 22-44 weeks</td></tr><tr><td>0 - English</td><td>7 - Premature</td><td>1 - 22-52 weeks</td></tr><tr><td>0 - English</td><td>7 - Premature</td><td>2 - Patient birth</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>0 - Height</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>1 - Weight</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>2 - Head circ.</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>3 - Sitting height</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>4 - Arm span</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>5 - Foot length</td></tr><tr><td>0 - English</td><td>8 - Measurement</td><td>6 - Waist circ.</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>0 - Leg length</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>1 - Height velocity</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>2 - Sitting height velocity</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>3 - Leg length velocity</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>4 - Rel. sitting height</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>5 - BMI</td></tr><tr><td>0 - English</td><td>9 - Calculated</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - English</td><td>10 - SD scores</td><td>0 - Ht &amp; BMI</td></tr><tr><td>0 - English</td><td>10 - SD scores</td><td>1 - Ht &amp; SHH</td></tr><tr><td>0 - English</td><td>10 - SD scores</td><td>2 - BMI &amp; Waist</td></tr><tr><td>0 - English</td><td>10 - SD scores</td><td>3 - Ht &amp; HV</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>0 - List</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>1 - SDS List</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>2 - Perc. List</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>3 - Corrected age (SDS)</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>4 - Corrected age (Perc)</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>5 - Bone age list</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>6 - Estimated adult size list</td></tr><tr><td>0 - English</td><td>11 - Lists</td><td>7 - Calculated values list</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("UKGrowthCharts.XUKGrowthCharts")
'Show the UK "BMI 0-20 years" chart
With Graph.GraphAttributes
    .template = 0    '0 - English
    .graphtype = 0   '0 - UK 2-18y
    .agerange = 4    '4 - BMI 0-20 years
    .ApplyAttributes
End With

Property Active: Boolean (Read-Only)
- belongs to UKGrowthCharts-IUKGrowthChartsGraph interface

footer


header

All US Growth charts library component

- File USGrowthCharts.ocx v2.1.0.21 2019-10-31
Constants:
PCValueType
  • pcvtHeight = 0 (Long)
  • pcvtWeight = 1 (Long)
  • pvctWeightForHeight = 2 (Long)
  • pvctHeadCirc = 3 (Long)
  • pvctBMI = 4 (Long)
  • pvctCDCHeight = 5 (Long)
  • pvctCDCWeight = 6 (Long)
  • pvctCDCWeightForHeight = 7 (Long)
  • pvctCDCHeadCirc = 8 (Long)
  • pvctCDCBMI = 9 (Long)

Interface IPercentileConverter (derived from stdole-IDispatch)
- belongs to All US Growth charts library component (USGrowthCharts.ocx - version 2.1.0.21)


IPercentileConverter is an interface that allows getting the corresponding percentile value for a value of type Height, Weight, Weight for Height, Head circumference or BMI.<br/> Usually the calculated percentile values are shown without decimals (e.g. 1st, 2nd, 3rd, 29th and 99th).<br/> <br/> E.g. the percentile value for a boy 2 years old with a Height of 80 cm returns approximately 3.299105. This value is usually shown as "3rd".

Function ValueFromPercentile : Double
- belongs to USGrowthCharts-IPercentileConverter interface
Parameter(s):


Function ValueToPercentile : Double
- belongs to USGrowthCharts-IPercentileConverter interface
Parameter(s):


Interface IUSAllGraph (derived from GraphXIntf-IGraphX)
- belongs to All US Growth charts library component (USGrowthCharts.ocx - version 2.1.0.21)



The US Growth Chart component contains the following list of charts.<br/> The 0-36 months GraphType is deprecated and should not be used in the future.<br/> <br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>0 - Length 0-2 yrs</td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>1 - Stature 2-20 yrs</td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>2 - Weight 0-2 yrs</td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>3 - Weight 2-20 yrs</td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>4 - Head circ. 0-2 yrs</td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>5 - BMI 2-20 yrs</td></tr><tr><td>0 - USA</td><td>0 - Individual</td><td>6 - Weight/Height 0-2 yrs</td></tr><tr><td>0 - USA</td><td>1 - Clinical</td><td>0 - Weight Height 0-2 yrs</td></tr><tr><td>0 - USA</td><td>1 - Clinical</td><td>1 - Head circ. W/H 0-2 yrs</td></tr><tr><td>0 - USA</td><td>1 - Clinical</td><td>2 - Weight Height 2-20 yrs</td></tr><tr><td>0 - USA</td><td>1 - Clinical</td><td>3 - Weight/Stature</td></tr><tr><td>0 - USA</td><td>1 - Clinical</td><td>4 - BMI 2-20 yrs</td></tr><tr><td>0 - USA</td><td>2 - WIC</td><td>0 - Weight Height 0-2 yrs</td></tr><tr><td>0 - USA</td><td>2 - WIC</td><td>1 - Stature Weight 2-5 yrs</td></tr><tr><td>0 - USA</td><td>2 - WIC</td><td>2 - Head circ. W/H 0-2 yrs</td></tr><tr><td>0 - USA</td><td>2 - WIC</td><td>3 - BMI 2-5 yrs</td></tr><tr><td>0 - USA</td><td>2 - WIC</td><td>4 - BMI 2-5 yrs colored</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>0 - Weight Height 0-3 yrs (WIC)</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>1 - Head circ. W/H 0-3 yrs (WIC)</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>2 - Length 0-3 yrs</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>3 - Weight 0-3 yrs</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>4 - Head circ. 0-3 yrs</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>5 - Weight/Height 0-3 yrs</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>6 - Weight Height 0-3 yrs</td></tr><tr><td>0 - USA</td><td>3 - 0-36 months</td><td>7 - Head circ. Wt/Ht 0-3 yrs</td></tr><tr><td>0 - USA</td><td>4 - Turner</td><td>0 - Weight Height 0-2 yrs</td></tr><tr><td>0 - USA</td><td>4 - Turner</td><td>1 - Stature Weight 2-5 yrs</td></tr><tr><td>0 - USA</td><td>4 - Turner</td><td>2 - Weight for Length 0-2 yrs</td></tr><tr><td>0 - USA</td><td>4 - Turner</td><td>3 - Weight Height 2-20 yrs</td></tr><tr><td>0 - USA</td><td>4 - Turner</td><td>4 - BMI 0-18 yrs</td></tr><tr><td>0 - USA</td><td>4 - Turner</td><td>5 - Height Velocity 0-18 yrs</td></tr><tr><td>0 - USA</td><td>5 - Down</td><td>0 - Weight Height 0-2 yrs</td></tr><tr><td>0 - USA</td><td>5 - Down</td><td>1 - Stature Weight 2-5 yrs</td></tr><tr><td>0 - USA</td><td>5 - Down</td><td>2 - Head circ. W/H 0-3 yrs</td></tr><tr><td>0 - USA</td><td>5 - Down</td><td>3 - Weight Height 2-20 yrs</td></tr><tr><td>0 - USA</td><td>6 - Premature</td><td>0 - 22-44 weeks</td></tr><tr><td>0 - USA</td><td>6 - Premature</td><td>1 - 22-52 weeks</td></tr><tr><td>0 - USA</td><td>6 - Premature</td><td>2 - Patient birth</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>0 - List</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>1 - SDS List</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>2 - Perc. List</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>3 - Corrected age (SDS)</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>4 - Corrected age (Perc)</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>5 - Bone age list</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>6 - Predicted adult height list</td></tr><tr><td>0 - USA</td><td>7 - Lists</td><td>7 - Calculated values list</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>0 - Height</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>1 - Weight</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>2 - Head circ.</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>3 - Sitting height</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>4 - Arm span</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>5 - Foot length</td></tr><tr><td>0 - USA</td><td>8 - Measurement</td><td>6 - Waist circ.</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>0 - Leg length</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>1 - Height velocity</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>2 - Sitting height velocity</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>3 - Leg length velocity</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>4 - Rel. sitting height</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>5 - BMI</td></tr><tr><td>0 - USA</td><td>9 - Calculated</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - USA</td><td>10 - SD scores</td><td>0 - Ht &amp; BMI</td></tr><tr><td>0 - USA</td><td>10 - SD scores</td><td>1 - Ht &amp; SHH</td></tr><tr><td>0 - USA</td><td>10 - SD scores</td><td>2 - BMI &amp; Waist</td></tr><tr><td>0 - USA</td><td>10 - SD scores</td><td>3 - Ht &amp; HV</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>0 - Normal Weight - Singleton</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>1 - Obese - Singleton</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>2 - Underweight - Singleton</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>3 - Overweight - Singleton</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>4 - Normal Weight - Multifetal</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>5 - Obese - Multifetal</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>6 - Overweight - Multifetal</td></tr><tr><td>0 - USA</td><td>11 - Weight gain</td><td>7 - Weight gain data</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("USGrowthCharts.USAllGraph")
'Show the US Clinical "Weight Height 2-20 yrs" chart
With Graph.GraphAttributes
    .template = 0    '0 - USA
    .graphtype = 1   '1 - Clinical
    .agerange = 2    '2 - Weight Height 2-20 yrs
    .ApplyAttributes
End With

Property Version: String (Read-Only)
- belongs to USGrowthCharts-IUSAllGraph interface


Interface IUSAllGraphEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to All US Growth charts library component (USGrowthCharts.ocx - version 2.1.0.21)


footer


header

WHO growth charts component

- File WHOGrowthCharts.ocx v1.0.0.5 2018-06-25

Interface IWHOGrowthChartsEvents (derived from GraphXIntf-IGraphXEvents)
- belongs to WHO growth charts component (WHOGrowthCharts.ocx - version 1.0.0.5)


Interface IWHOGrowthChartsGraph (derived from GraphXIntf-IGraphX)
- belongs to WHO growth charts component (WHOGrowthCharts.ocx - version 1.0.0.5)



The WHO Growth Chart component contains the following list of charts.<br/><br/> <table><tr><td style="width: 100px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-Template">Template</a></span></td><td style="width: 150px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-GraphType">GraphType</a></span></td><td style="width: 250px"><span class="bold"><a href="#GraphObjIntf-ITXGraphAttributes-AgeRange">AgeRange</a></span></td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>0 - Length 0-6 months</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>1 - Weight 0-6 months</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>2 - Head circ. 0-13 weeks</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>3 - Length 6 m-2 yrs</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>4 - Weight 6 m-2 yrs</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>5 - Length 0-2 yrs</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>6 - Weight 0-2 yrs</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>7 - Head circ. 0-2 yrs</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>8 - BMI 0-2 yrs</td></tr><tr><td>0 - WHO</td><td>0 - 0-2 years</td><td>9 - Weight for Length 0-2 yrs</td></tr><tr><td>0 - WHO</td><td>1 - 2-5 years</td><td>0 - Height 2-5 yrs</td></tr><tr><td>0 - WHO</td><td>1 - 2-5 years</td><td>1 - Weight 2-5 yrs</td></tr><tr><td>0 - WHO</td><td>1 - 2-5 years</td><td>2 - BMI 2-5 yrs</td></tr><tr><td>0 - WHO</td><td>1 - 2-5 years</td><td>3 - Weight for Height 2-5 yrs</td></tr><tr><td>0 - WHO</td><td>2 - 0-5 years</td><td>0 - Height 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>2 - 0-5 years</td><td>1 - Weight 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>2 - 0-5 years</td><td>2 - Head circ. 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>2 - 0-5 years</td><td>3 - BMI 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>2 - 0-5 years</td><td>4 - Weight for Height 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>3 - 5-19 years</td><td>0 - Height 5-19 yrs</td></tr><tr><td>0 - WHO</td><td>3 - 5-19 years</td><td>1 - Weight 5-10 yrs</td></tr><tr><td>0 - WHO</td><td>3 - 5-19 years</td><td>2 - BMI 5-19 yrs</td></tr><tr><td>0 - WHO</td><td>4 - 0-19 years</td><td>0 - Height, Weight 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>4 - 0-19 years</td><td>1 - Height 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>4 - 0-19 years</td><td>2 - Weight 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>4 - 0-19 years</td><td>3 - BMI 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>4 - 0-19 years</td><td>4 - Height, Height velocity 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>4 - 0-19 years</td><td>5 - BMI, Height velocity 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>0 - Height 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>1 - Height 5-19 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>2 - Weight 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>3 - Weight 5-10 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>4 - BMI 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>5 - BMI 5-19 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>6 - Weight for Height 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>7 - Height, Weight 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>5 - Turner</td><td>8 - BMI, Height velocity 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>6 - Down</td><td>0 - Height 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>6 - Down</td><td>1 - Height 5-19 yrs</td></tr><tr><td>0 - WHO</td><td>6 - Down</td><td>2 - Weight 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>6 - Down</td><td>3 - Weight 5-10 yrs</td></tr><tr><td>0 - WHO</td><td>6 - Down</td><td>4 - Head circ. 0-5 yrs</td></tr><tr><td>0 - WHO</td><td>6 - Down</td><td>5 - Height, Weight 0-19 yrs</td></tr><tr><td>0 - WHO</td><td>7 - Premature</td><td>0 - 22-44 weeks</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>0 - Height</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>1 - Weight</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>2 - Head circ.</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>3 - Sitting height</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>4 - Arm span</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>5 - Foot length</td></tr><tr><td>0 - WHO</td><td>8 - Measurement</td><td>6 - Waist circ.</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>0 - Leg length</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>1 - Height velocity</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>2 - Sitting height velocity</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>3 - Leg length velocity</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>4 - Rel. sitting height</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>5 - BMI</td></tr><tr><td>0 - WHO</td><td>9 - Calculated</td><td>6 - BMI (IOTF)</td></tr><tr><td>0 - WHO</td><td>10 - Lists</td><td>0 - List</td></tr><tr><td>0 - WHO</td><td>10 - Lists</td><td>1 - SDS List</td></tr><tr><td>0 - WHO</td><td>10 - Lists</td><td>2 - Perc. List</td></tr><tr><td>0 - WHO</td><td>10 - Lists</td><td>3 - Corrected age (SDS)</td></tr><tr><td>0 - WHO</td><td>10 - Lists</td><td>4 - Corrected age (Perc)</td></tr></table> <br/> See an example below.


[+] Example
[VB]
Set Graph = Server.CreateObject("WHOGrowthCharts.XWHOGrowthCharts")
'Show the WHO "Height 0-2 years" chart
With Graph.GraphAttributes
    .template = 0    '0 - WHO
    .graphtype = 0   '0 - 0-2 years
    .agerange = 5    '5 - Length 0-2 yrs
    .ApplyAttributes
End With

footer
PC PAL Growth Chart components help generated 2019-12-05 // TLD v2.0.5.25 (2019-12-05)
Copyright (c) 2004 - 2020 PC PAL | growthcharts.info | support@pcpal.eu