Beispiel #1
0
 public SciChartSurfaceIosRenderer()
 {
     // Apply license
     if (_license == null)
     {
         _license = SciChartLicenseManager.GetLicense(SciChartPlatform.iOS);
         if (_license != null)
         {
             SCIChartSurface.SetRuntimeLicenseKey(_license);
         }
     }
 }
 public SciChartSurfaceAndroidRenderer(Context context) : base(context)
 {
     // Apply license
     if (_license == null)
     {
         _license = SciChartLicenseManager.GetLicense(SciChartPlatform.Android);
         if (_license != null)
         {
             SciChartSurface.SetRuntimeLicenseKey(_license);
         }
     }
 }