Adding mode functionality to Donut
This commit is contained in:
parent
350b41543e
commit
0f07bd80a4
|
@ -428,6 +428,11 @@ export default {
|
||||||
...all,
|
...all,
|
||||||
},
|
},
|
||||||
settings: [
|
settings: [
|
||||||
|
{
|
||||||
|
label: "Table",
|
||||||
|
key: "model",
|
||||||
|
control: ModelSelect,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Fix Highlight Slice",
|
label: "Fix Highlight Slice",
|
||||||
key: "hasFixedHighlightedSlice",
|
key: "hasFixedHighlightedSlice",
|
||||||
|
|
|
@ -259,6 +259,7 @@
|
||||||
"color": "string",
|
"color": "string",
|
||||||
"height": "number",
|
"height": "number",
|
||||||
"width": "number",
|
"width": "number",
|
||||||
|
"model": "string",
|
||||||
"hasFixedHighlightedSlice": "bool",
|
"hasFixedHighlightedSlice": "bool",
|
||||||
"hasLastHoverSliceHighlighted": "bool",
|
"hasLastHoverSliceHighlighted": "bool",
|
||||||
"hasHoverAnimation": "bool",
|
"hasHoverAnimation": "bool",
|
||||||
|
|
|
@ -15,6 +15,11 @@
|
||||||
let chartElement = null
|
let chartElement = null
|
||||||
let chartContainer = null
|
let chartContainer = null
|
||||||
|
|
||||||
|
export let _bb
|
||||||
|
export let model
|
||||||
|
|
||||||
|
let store = _bb.store
|
||||||
|
|
||||||
export let customMouseOver = null
|
export let customMouseOver = null
|
||||||
export let customMouseMove = null
|
export let customMouseMove = null
|
||||||
export let customMouseOut = null
|
export let customMouseOut = null
|
||||||
|
@ -22,7 +27,7 @@
|
||||||
|
|
||||||
export let orderingFunction = null
|
export let orderingFunction = null
|
||||||
|
|
||||||
export let data = []
|
export let data = model ? $store[model] : []
|
||||||
export let color = "britecharts"
|
export let color = "britecharts"
|
||||||
export let height = 200
|
export let height = 200
|
||||||
export let width = 200
|
export let width = 200
|
||||||
|
@ -41,6 +46,27 @@
|
||||||
export let radiusHoverOffset = 0
|
export let radiusHoverOffset = 0
|
||||||
export let useLegend = true
|
export let useLegend = true
|
||||||
|
|
||||||
|
async function fetchData() {
|
||||||
|
const FETCH_RECORDS_URL = `/api/views/all_${model}`
|
||||||
|
const response = await _bb.api.get(FETCH_RECORDS_URL)
|
||||||
|
if (response.status === 200) {
|
||||||
|
const json = await response.json()
|
||||||
|
store.update(state => {
|
||||||
|
state[model] = json
|
||||||
|
return state
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
throw new Error("Failed to fetch records.", response)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onMount(async () => {
|
||||||
|
await fetchData()
|
||||||
|
})
|
||||||
|
|
||||||
|
$: _data = model ? $store[model] : data
|
||||||
|
$: console.log("_data", _data)
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
if (chart) {
|
if (chart) {
|
||||||
chart.emptyDataConfig({
|
chart.emptyDataConfig({
|
||||||
|
|
Loading…
Reference in New Issue