mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
75 lines
2.2 KiB
QML
75 lines
2.2 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"Bubble Chart"
|
|
|
|
function randomScalingFactor() {
|
|
return Math.random().toFixed(1);
|
|
}
|
|
|
|
FluArea{
|
|
height: 370
|
|
width: 500
|
|
paddings: 10
|
|
Layout.topMargin: 20
|
|
FluChart{
|
|
anchors.fill: parent
|
|
chartType: 'bubble'
|
|
chartData: {
|
|
return {
|
|
datasets: [{
|
|
label: 'First Dataset',
|
|
data: [{
|
|
x: 20,
|
|
y: 30,
|
|
r: 15
|
|
}, {
|
|
x: 12,
|
|
y: 70,
|
|
r: 20
|
|
}, {
|
|
x: 11,
|
|
y: 28,
|
|
r: 8
|
|
}, {
|
|
x: 9,
|
|
y: 28,
|
|
r: 10
|
|
}, {
|
|
x: 43,
|
|
y: 7,
|
|
r: 14
|
|
}, {
|
|
x: 22,
|
|
y: 22,
|
|
r: 12
|
|
}, {
|
|
x: 40,
|
|
y: 10,
|
|
r: 10
|
|
}],
|
|
backgroundColor: 'rgb(255, 99, 132)'
|
|
}]
|
|
}}
|
|
chartOptions: {return {
|
|
maintainAspectRatio: false,
|
|
responsive: true,
|
|
hoverMode: 'nearest',
|
|
intersect: true,
|
|
title: {
|
|
display: true,
|
|
text: 'Chart.js Bubble Chart - Multi Axis'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|