Пример #1
0
 public VegaChart(string title,
                  Schema.Specification vegaLiteSpecification,
                  Guid?id = null)
     : this(title,
            id)
 {
     Specification = vegaLiteSpecification;
 }
Пример #2
0
        private static void Main(string[] args)
        {
            //foreach(Specification exampleSpecification in ExampleSpecifications)
            //{
            //    VegaChart chart = new VegaChart(exampleSpecification.Description,
            //                                    exampleSpecification);
            //
            //    chart.ShowInBrowser();
            //}

            Schema.Specification spec = ExampleSpecifications.First();
        }