%%{init: {"theme": "base", "themeVariables": {"primaryColor": "#fabd2f", "primaryTextColor": "#282828", "primaryBorderColor": "#b57614", "lineColor": "#7c6f64", "secondaryColor": "#83a598", "tertiaryColor": "#b8bb26", "background": "#fbf1c7", "mainBkg": "#ebdbb2", "fontFamily": "Tahoma, sans-serif"}}}%% flowchart LR subgraph Era1["ยุค Format ใน Component / Manual Format"] A["formatDate()เขียน method เอง"] end subgraph Era2["ยุค Built-in Pipes / Angular Pipes"] B["date/currency/numberแปลงค่ามาตรฐาน"] C["uppercase/jsonช่วยแสดงผล"] end subgraph Era3["ยุค Reactive Template / Async Pipe"] D["async pipesubscribe อัตโนมัติ"] E["Custom Pipeกติกาเฉพาะระบบ"] end A --> B --> C --> D --> E
%%{init: {"theme": "base", "themeVariables": {"primaryColor": "#fabd2f", "primaryTextColor": "#282828", "primaryBorderColor": "#b57614", "lineColor": "#7c6f64", "secondaryColor": "#83a598", "tertiaryColor": "#b8bb26", "background": "#fbf1c7", "mainBkg": "#ebdbb2", "fontFamily": "Tahoma, sans-serif"}}}%% flowchart LR A["Raw Valueค่าดิบ"] --> B["Pipeแปลงค่า"] B --> C["Formatted Valueค่าพร้อมแสดงผล"] C --> D["Templateหน้าจอผู้ใช้"]
วันที่: {{ today | date:'dd/MM/yyyy' }}
ราคา: {{ price | currency:'THB':'symbol':'1.2-2' }}
ชื่อ: {{ name | titlecase }}
ข้อมูล async: {{ message$ | async }}
{{ debugData | json }}