Skip to content
nelson.li edited this page Nov 14, 2025 · 1 revision

Q1: How to change the description of Column 'TaskName'?

The task name is defined as a built-in and mandatory field because it represents critical information. Therefore, a default built-in description is provided. If necessary, it can be overridden through external localization settings.

1. Define customized language settings

const customMessages = ref({
  'zh-CN': { taskName: '我的任务名称' }, 'en-US': { taskName: 'My Task Name' }
})

2. Load them into the GanttChart component

<template>
  <GanttChart :tasks="tasks" :locale-messages="customMessages" />
</template>

Clone this wiki locally