Tutorial by Examples: n

Highcharts.setOptions({ lang: { loading: 'Aguarde...', months: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'], weekdays: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sex...
Highcharts.setOptions({ lang: { loading: 'Загрузка...', months: ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'], weekdays: ['Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'П...
Highcharts.setOptions({ lang: { loading: 'Cargando...', months: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'], weekdays: ['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', '...
Highcharts.setOptions({ lang: { decimalPoint: ',', thousandsSep: '.', loading: 'Daten werden geladen...', months: ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'], ...
Highcharts.setOptions({ lang: { loading: 'Wordt geladen...', months: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], weekdays: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donde...
Highcharts.setOptions({ lang: { loading: 'Yükleniyor...', months: ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'], weekdays: ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cum...
Highcharts.setOptions({ lang: { loading: 'Ładowanie...', months: ['Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień'], weekdays: ['Niedziela', 'Poniedziałek', 'Wtorek', 'Ś...
Highcharts.setOptions({ lang: { loading: 'Betöltés...', months: ['január', 'február', 'március', 'április', 'május','június', 'július', 'augusztus', 'szeptember', 'október', 'november', 'december'], shortMonths: ['jan', 'febr', 'márc', 'ápr', 'má...
Highcharts.setOptions({ lang: { loading: 'Načítám...', months: ['Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'], weekdays: ['Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'S...
Highcharts.setOptions({ lang: { loading: 'Chargement...', months: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'], weekdays: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vend...
Highcharts.setOptions({ lang: { loading: 'Sto caricando...', months: ['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'], weekdays: ['Domenica', 'Lunedì', 'Martedì', 'Mercoledì'...
Highcharts.setOptions({ lang: { loading: '加载中...', months: ['1月', '2月', '3月', '4月', '5月', '6月', '7月','8月', '9月', '10月', '11月', '12月'], shortMonths: ['1月', '2月', '3月', '4月', '5月', '6月', '7月','8月', '9月', '10月', '11月', '12月'], weekdays: ['星期日', '...
Highcharts.setOptions({ lang: { contextButtonTitle: "Menú contextual del diagrama", decimalPoint: ",", downloadJPEG: "Desa com a imatge JPEG", downloadPDF: "Desa com a document PDF", downloa...
Highcharts.setOptions({ lang: { loading: 'Načítavam...', months: ['Január', 'Február', 'Marec', 'Apríl', 'Máj', 'Jún', 'Júl', 'August', 'September', 'Október', 'November', 'December'], weekdays: ['Nedeľa', 'Pondelok', 'Utorok', 'Streda', 'Štvrtok', 'Piatok...
An XML document can contain a DTD. DTD stands for Document Type Declaration. A DTD begins with <!DOCTYPE root-element-name > where doc-element-name must match the name of the so-called document element (the one element at the top-level). <?xml version="1.0"?> <!DOCTYPE doc...
A DTD can contain entity declarations. <?xml version="1.0"?> <!DOCTYPE document [ <!ENTITY my-entity "This is the replacement text"> ]> <document> <!-- the rest of the document --> </document> Entities are described in details in ...
To view line numbers from Default view enter :set number To hide line numbers :set nonumber There is also a shortcut for above. nu is same as number. :set nonu To hide line numbers, we can also use :set nu!
int main (void) { const int foo_readonly = 10; int *foo_ptr; foo_ptr = (int *)&foo_readonly; /* (1) This casts away the const qualifier */ *foo_ptr = 20; /* This is undefined behavior */ return 0; } Quoting ISO/IEC 9899:201x, section 6.7.3 §2: If an attempt i...
Add-ons: Firefox add-ons are generally grouped into Extensions, and then "other types" of Firefox add-ons. Extensions Extensions allow Firefox to be customized by adding to or modifying the functionality of Firefox. Some of the types of things which can be done with extensions include:...
@Test public void testUpNavigation() { intending(hasComponent(ParentActivity.class.getName())).respondWith(new Instrumentation.ActivityResult(0, null)); onView(withContentDescription("Navigate up")).perform(click()); intended(hasComponent(ParentActivity.class.getName())...

Page 425 of 1088