NG_/Assets/Scripts/Data/Controller/ChemicalLnventorySwings.cs
2024-12-13 19:40:05 +08:00

27 lines
554 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using XCharts.Runtime;
// 危化品庫存
public class ChemicalLnventorySwings : MonoBehaviour
{
public CandlestickChart chart;
private string customVariable = "自定义变量";
// Start is called before the first frame update
void Start()
{
chart.series[0].itemStyle.itemFormatter="{c}";
// print("__________"+chart.series[0]
}
// Update is called once per frame
void Update()
{
}
}