10 quadrillion squared. why not
diff --git a/org.eclipse.nebula.widgets.nattable.core.example/src/org/eclipse/nebula/widgets/nattable/core/example/impl/big/BigLayerExample.xtend b/org.eclipse.nebula.widgets.nattable.core.example/src/org/eclipse/nebula/widgets/nattable/core/example/impl/big/BigLayerExample.xtend
index ae3117e..e1acc42 100644
--- a/org.eclipse.nebula.widgets.nattable.core.example/src/org/eclipse/nebula/widgets/nattable/core/example/impl/big/BigLayerExample.xtend
+++ b/org.eclipse.nebula.widgets.nattable.core.example/src/org/eclipse/nebula/widgets/nattable/core/example/impl/big/BigLayerExample.xtend
@@ -14,14 +14,14 @@
 	
 	override getDescription() {
 		'''
-		A grid with 10 million columns and 10 million rows!
+		A grid with 10 quadrillion columns and 10 quadrillion rows!
 		'''
 	}
 	
 	override createLayer() {
 		val bodyLayer = new ViewportLayer(new DummyLayer(
-			new AxisImpl(1000 * 1000 * 1000 * 1000, 200),  // Horizontal axis
-			new AxisImpl(1000 * 1000 * 1000 * 1000, 100)  // Vertical axis
+			new AxisImpl(10L * 1000 * 1000 * 1000 * 1000 * 1000, 200),  // Horizontal axis
+			new AxisImpl(10L * 1000 * 1000 * 1000 * 1000 * 1000, 100)  // Vertical axis
 		))
 
 		val columnHeaderLayer = new ColumnHeaderLayer(bodyLayer.horizontalAxis, new LayerDataAccessorImpl([ layer, columnId, rowId | columnId ]))