Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
var report = new StiReport();
report.Load(stream); // GlobalizedSimpleList.mrt
report.GlobalizationManager = new GlobalizationManager(
"Globalizing_Reports.MyResources", new CultureInfo(cultureName));
report.RegData(dataSet1);
report.CalculationMode = StiCalculationMode.Interpretation;Assigning a GlobalizationManager with a CultureInfo makes the report format its content for that country, so a single template can serve many locales. Globalization affects the report data, unlike interface localization which affects the viewer.