Blog

All Blog Posts  |  Next Post  |  Previous Post

Autonomous Dashboard Diagnostics: 3 of 3 - Visual Impact

Bookmarks: 

Tuesday, October 25, 2022

TMS Software Delphi  Components

Your presentation begins in 8 minutes, and you realize the bar chart would be easier to read with data labels. Marshal custom inspectors enable detail design tools to be used at runtime to enhance complex control configurations.

Join us in a live webinar on Nov 15 where I use Marshal to resolve these issues and explore other diagnostics. 

This post resumes diagnostics at 9:52 before the 10:00 presentation. If you missed part 1 or part 2, please take a look at here.



9:52

You open the inspector for FNC Charts and click on the show editor button which launches the GUI designer. You select the series tab and then select the labels tab. Adding the check mark to visible shows the labels for the bar. You do the same for each of the 3 series.

TMS Software Delphi  Components


9:54

Visual impact is about the small details and here you have created a problem, the labels below are formatted with money and no decimal places. To ensure they match you inspect the chart below and copy the label format. Now you tab back over to the barchart and launch the editor again to apply the format to the series.

TMS Software Delphi  Components


9:56

Now that you are ready to present it is time to create a few artifacts. The inspector allows you to save a copy of the chart to PDF just to ensure you have enough details to document the optimization. Object plus allows you to export the component to be able to compare the DFM later.

Custom Inspectors = Smarter Diagnostics

Marshal internal inspectors are written using a plugin model, allowing you to deliver capabilities based on your component type. The FNC Chart Editor shown in this demo is a custom inspector for the TTMSFNCChart type. Source code is available in GitHub. https://github.com/SwiftExpat/RunTime-ToolKit/tree/main/Samples/FNCChart

TMS FNC Chart is a complex component which has a dedicated editor for design. Having the same editor available at runtime is more efficient than using Object Plus to inspect deeply nested properties. The custom inspector allows you to use the best tool for the component and still have Object Plus for inspecting other properties. The inspector provides higher level features:

TMS Software Delphi  Components


  • FNC Chart Editor. Dedicated design tool for FNC Charts implemented at runtime.
  • Export the chart to PDF. PDF is a good way to capture and share an image of the individual component. FNC Core provides TTMSFNCGraphicsPDFIO that automatically captures the component.
  • Chart Edit History. With each edit the image of the chart is captured and displayed in the list along with the JSON for the chart.
  • Adapter verification. The status bar demonstrates how automated checks can be used to provide a quick visual of common misconfigurations. Verifying all of the adapter dependencies is performed using a nested if statement to ensure nothing is missed.
Implementing a custom inspector involves 4 steps:

  1. Define a transform class to identify the object type for the inspector (TSETransformFNCChart)
  2. Create a tool class to allow the transform to assign a tool to the class (TSESITFNCChart)
  3. Create an inspector instance to allow the UI to initialize the tool when you click on the node in the tree (TSERTTKPluginFNCChartTool)
  4. Initialize the inspector to add it to Marshal's registry

The instance for this inspector is a frame, allowing use of the components from the tool pallet, that exposes a few public procedures for the buttons and a few UI components to visualize the result of the editor. The frame unit also contains the transform and tool mapping classes.

Author: Neil Laskowski



If you are already using the various TMS FNC components, here is your opportunity to get in touch and ask questions live during the webinar. 
TMS Software Delphi  Components

* The webinar runs on https://www.tmswebacademy.com/ , our custom developed and 100% web based platform for organizing webinars. 







Masiha Zemarai


Bookmarks: 

This blog post has not received any comments yet.



Add a new comment

You will receive a confirmation mail with a link to validate your comment, please use a valid email address.
All fields are required.



All Blog Posts  |  Next Post  |  Previous Post