generate_fishbone_diagram
Create fishbone diagrams to visually analyze and break down root causes of complex problems into hierarchical factors, organized in a fish skeleton structure for clear insights.
Instructions
Generate a fishbone diagram chart to uses a fish skeleton, like structure to display the causes or effects of a core problem, with the problem as the fish head and the causes/effects as the fish bones. It suits problems that can be split into multiple related factors.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data for fishbone diagram chart which is a hierarchical structure, such as, { name: 'main topic', children: [{ name: 'topic 1', children: [{ name: 'subtopic 1-1' }] }] }, and the maximum depth is 3. | |
height | No | Set the height of chart, default is 400. | |
style | No | Custom style configuration for the chart. | |
theme | No | Set the theme for the chart, optional, default is 'default'. | default |
width | No | Set the width of chart, default is 600. |