示例#1
0
 private xsc.LegendTransition SetLegendTransition()
 {
     xsc.LegendTransition setting = new xsc.LegendTransition();
     setting.Type = xsc.TransitionType.dissolve;
     setting.Delay = 0;
     setting.Duration = 0.5;
     return setting;
 }
 private LegendTransition SetLegendTransition()
 {
     LegendTransition lt = new LegendTransition();
     lt.Type = TransitionType.dissolve;
     lt.Delay = 2;
     lt.Duration = 0.5;
     return lt;
 }
示例#3
0
 private xsc.LegendTransition SetLegendTransition()
 {
     xsc.LegendTransition lt = new xsc.LegendTransition();
     lt.Type = xsc.TransitionType.dissolve;
     lt.Delay = 0;
     lt.Duration = 1;
     return lt;
 }
 private xsc.LegendTransition SetLegendTransition()
 {
     xsc.LegendTransition lt = new xsc.LegendTransition();
     lt.Type = xsc.TransitionType.slide_left;
     lt.Delay = 0;
     lt.Duration = 1;
     return lt;
 }