Hi all,
I would like to create a timeline chart.
I have projects that have start-date and end-date values that I would like to visualize.
I've been struggling to find a solution for a while now.
My data looks like this approx.:
{
"description": [
"project"
],
"description.keyword": [
"project"
],
"id": [
"28aac9f41e9d2178393ccac103b0cb9c76ea54f196f58c42c82f4492757358f0"
],
"metadata.properties.Project": [
"Some name"
],
"metadata.properties.Project.keyword": [
"Some name"
],
"metadata.properties.StartDate": [
"2022-10-24T00:00:00.000Z"
],
"metadata.properties.EndDate": [
"2022-12-31T00:00:00.000Z"
],
"metadata.properties.Client": [
"Client name"
],
"metadata.properties.Client.keyword": [
"Client name"
],
"metadata.properties.BillableAmount": [
5500
],
"metadata.properties.BillableHours": [
37
],
"metadata.properties.Budget": [
325
],
"metadata.properties.BudgetBy": [
"Hours"
],
"metadata.properties.BudgetBy.keyword": [
"Hours"
],
"metadata.properties.BudgetRemaining": [
275
],
"metadata.properties.BudgetSpent": [
25
],
"metadata.properties.ProjectCode": [
"3400001043"
],
"metadata.properties.ProjectCode.keyword": [
"3400001043"
],
"metadata.properties.ProjectID": [
"0575e4e776897f36a7d1a70ed2c37df1eae4b348289013d9cce31b854c3e008d"
],
"metadata.properties.ProjectID.keyword": [
"0575e4e776897f36a7d1a70ed2c37df1eae4b348289013d9cce31b854c3e008d"
],
"metadata.properties.TotalHours": [
40
],
"name": [
"Some name"
],
"name.keyword": [
"Some name"
],
"name.length": [
9
],
"source": [
"Test Source"
],
"_id": "28aac9f41e9d2178393ccac103b0cb9c76ea54f196f58c42c82f4492757358f0",
"_index": "insights_default_xod",
"_score": 0
}
The only values I care for are: metadata.properties: Project, StartDate, EndDate.
Does anyone has any ideas how I can do this?
Thank you in advance for reading and any suggestions.
Kamil