Overview
This Component Plug-in provides the capability to display interactive charts in Appian using Google Charts. It offers support for the following types of charts:
Key Features & Functionality
These charts work on all Appian user interfaces and with the Appian mobile application. They are easy to configure and a sample application is provided as part of the download. The plug-in can be used to set up to provide interactive charts with drill-down capabilities and allow the event context to pass into any SAIL component(s) on the same or a different interface.
How to use the component:
2019 AppMarket Award Winner - Best Use of the Integration SDK
As shown below screenshot we need to display Week Calendar with Meeting conflicts., without bothering about dates., only time is considered here.
Input data sets are column data (9 am to 6 pm) row data : meeting requests.
Can we achieve below requirement using google calendar/Timeliness?, we just wanted to display only time, no dates attached to it.
Note: below screen designed in out of box features , doens't seems to be working as expected.
Here is code tried with google calender doesn't seems to be working, start and end time , seems to be expecting date format. ,
any alternate suggestion/thoughts would be appreciated.
googleTimelineChartField( chartColumnData: { { type: "string", id: "Name", rowDataKey: "name" }, { type: "string", id: "Title", rowDataKey: "title" }, { type: "string", id: "style", rowDataKey: "style", role: "style" }, { type: "date", id: "Start Time", rowDataKey: "start" }, { type: "date", id: "End Time", rowDataKey: "end" } }, chartRowData: { { name: "Monday", start: time(11,30,0) , end: time( 12, 30, 00 ), title: "Meeiing 1",
},
{ name: "Tuesday", start: time( 09, 00, 00 ), end: time( 09, 30, 00 ), title: "Meeting 2",
}, { name: "Tuesday", start: time( 14, 00, 00 ), end: time( 15, 00, 00 ), title: "Meeting 3",
}, chartOptions: { height: 380 })
Thanks in advance.