Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [swtchart-dev] How to center the PieChart?



Just for completeness, this is my "Slice" class:


Am Fr., 15. Okt. 2021 um 17:17 Uhr schrieb Andreas Buchen <andreas.buchen@xxxxxxxxx>:

This is my current code snippet:



    public static class Slice extends Node
    {
        private Object data;

        public Slice(String id, double val, Node parent)
        {
            super(id, val, parent);
        }

        public Object getData()
        {
            return data;
        }

        public void setData(Object data)
        {
            this.data = "">        }
    } 

Back to the top