What is something fun, creative, or crazy you've accomplished with LPL? Maybe we can all get each other's creative juices flowing by sharing war stories, tips/tricks, etc.
I'll go first in a moment in a reply to myself...
The pie chart in this screenshot is a derived field of dynamically generated SVG. Creating it required (among other things) figuring out how to implement Cos and Sin trigonometry functions in LPL. [Happy to share the code if anyone wants to see if.]
So, a DerivedField of type RichText then that ultimately is your generated SVG?
Yes, the RichText field is happy to render a self-contained SVG (which I thought was very cool).
Here's the code:
ITRRSTile is a BusinessClass
Very crafty. I think that likely doesn't render in a PDF export, not sure if that was a concern.
I'm curious, did you make any attempts at an LPL based pie chart?Charts PercentPieChart is a PieChart title is "<BenefitEnrollmentEvent.Description>_-Percent_-Pie_Chart" element name is "<EnrollmentStatus>" element value is Percent title is "Percent" CountPieChart is a PieChart title is "<BenefitEnrollmentEvent.Description>_-Count_-Pie_Chart" element name is "<EnrollmentStatus>" element value is CountDerived title is "Count"This takes the rows from a List, and given two fields (Derived or other) as elements generates the charts.