Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

User friendly Charts Demo Data and Chart Fixes#1656

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
FalkWolsky merged 23 commits intolowcoder-org:devfromiamfaran:charts
May 22, 2025
Merged
Changes from1 commit
Commits
Show all changes
23 commits
Select commitHold shift + click to select a range
0fd92c4
Improve Bar Chart
iamfaranApr 24, 2025
ffcef3c
Improve Line Chart
iamfaranApr 24, 2025
6ee9d15
Improve Sankey Chart component data
iamfaranApr 24, 2025
d37822b
Improve Tree Chart
iamfaranApr 24, 2025
672d40d
Improve TreeMapChart Data
iamfaranApr 24, 2025
71a498e
Improve Sunburst Chart Data
iamfaranApr 24, 2025
55e43b2
Add label toggle in the TreeChart
iamfaranApr 25, 2025
6f26f02
Add label toggle functionality for TreeMap Chart
iamfaranApr 25, 2025
5a6a55f
Improve CandleChart Data
iamfaranApr 25, 2025
ce78c15
Improve Pie Chart Data
iamfaranApr 25, 2025
f81f755
Improve Mermaid Chart Data
iamfaranApr 25, 2025
88a3454
Improve ThemeRiver Component
iamfaranApr 25, 2025
6e62f3d
Improve Radar Chart Data
iamfaranApr 25, 2025
4e4280f
Improve ScatterChart Data
iamfaranApr 25, 2025
d071fc9
Improve GraphChart Data
iamfaranApr 25, 2025
1383bc5
Merge branch 'dev' of github.com:lowcoder-org/lowcoder into charts
iamfaranApr 25, 2025
81bd036
add sankey chart labels
iamfaranApr 28, 2025
4d378da
fix label issue for TreeChart
iamfaranApr 29, 2025
c6f8f1d
Fix labels issue with sunburst and Treemapchart
iamfaranApr 29, 2025
4305b76
Fix labels for Sankey and Radar chart
iamfaranApr 29, 2025
35234ec
Make TreeChart Leaf nodes center aligned
iamfaranApr 29, 2025
3533ef9
remove console logs
iamfaranApr 29, 2025
9a37358
Merge branch 'dev' into charts
raheeliftikhar5May 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Improve GraphChart Data
  • Loading branch information
@iamfaran
iamfaran committedApr 25, 2025
commitd071fc9d80494493d3c9eea5d5063b1aa6b197fa
38 changes: 21 additions & 17 deletionsclient/packages/lowcoder-comps/src/i18n/comps/locales/enObj.tsx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -410,23 +410,27 @@ export const enObj: I18nObjects = {
]
},
defaultGraphChartOption: {
color:{
pointColor: "#0000ff",
lineColor: "#00000033"
},
categories: [
{name: "Nodes"},
{name: "Edges"}
],
nodes: [
{name: "Node 1", category: 0},
{name: "Node 2", category: 0},
{name: "Node 3", category: 0}
],
links: [
{source: "Node 1", target: "Node 2", category: 1},
{source: "Node 2", target: "Node 3", category: 1}
]
color: {
pointColor: "#4285F4",
lineColor: "#00000045"
},
categories: [
{name: "Person", itemStyle: {color: "#4285F4"}},
{name: "Company", itemStyle: {color: "#34A853"}},
{name: "Project", itemStyle: {color: "#EA4335"}}
],
nodes: [
{id: "1", name: "John Smith", value: 25, category: 0, symbolSize: 25},
{id: "2", name: "Jane Doe", value: 20, category: 0, symbolSize: 20},
{id: "3", name: "Acme Inc", value: 30, category: 1, symbolSize: 30},
{id: "4", name: "Project X", value: 25, category: 2, symbolSize: 25}
],
links: [
{source: "1", target: "3", value: 8, lineStyle: {width: 2}},
{source: "1", target: "4", value: 6, lineStyle: {width: 2}},
{source: "2", target: "3", value: 5, lineStyle: {width: 1}},
{source: "3", target: "4", value: 9, lineStyle: {width: 3}}
]
},
defaultTreeChartOption: {
data: [{
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp